Skip to content

Commit a9c8582

Browse files
committed
Cap floating IPs table width to max-w-lg on instance create form
The floating IPs MiniTable container was unconstrained, causing it to stretch wider than other fields. Add max-w-lg to match the empty state and other sections in the form. https://claude.ai/code/session_01JAbgycxitZnU3ii4FzFuNd
1 parent ad42185 commit a9c8582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/forms/instance-create.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ const NetworkingSection = ({
10011001
/>
10021002
</div>
10031003
) : (
1004-
<div className="flex flex-col items-start gap-3">
1004+
<div className="flex max-w-lg flex-col items-start gap-3">
10051005
<MiniTable
10061006
ariaLabel="Floating IPs"
10071007
items={attachedFloatingIpsData}

0 commit comments

Comments
 (0)