Skip to content

Commit 822b9c1

Browse files
david-crespoclaude
andauthored
Cap floating IPs table width to max-w-lg on instance create form (#3079)
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. Closes #3078 https://claude.ai/code/session_01JAbgycxitZnU3ii4FzFuNd Co-authored-by: Claude <noreply@anthropic.com>
1 parent ad42185 commit 822b9c1

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)