Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 80baa03

Browse files
authored
Merge pull request #134 from supabase/fix/form-horizontal-widths
fix: adjust column width
2 parents dfe04c7 + 7f5ab7b commit 80baa03

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/Layout/FormLayout/FormLayout.module.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@
1919
}
2020

2121
.sbui-formlayout--non-responsive {
22-
@apply grid-cols-12;
22+
@apply grid grid-cols-12 gap-4;
2323
}
2424

2525
.sbui-formlayout--responsive {
26-
@apply md:grid-cols-12;
26+
@apply md:grid md:grid-cols-12 md:gap-4;
2727
}
2828

2929
.sbui-formlayout__label-container-horizontal {
3030
@apply justify-between col-span-12;
3131
}
3232

3333
.sbui-formlayout__label-container-vertical {
34-
@apply col-span-5;
34+
@apply col-span-4;
3535
}
3636

3737
.sbui-formlayout__content-container-horizontal {
3838
@apply col-span-12;
3939
}
4040

4141
.sbui-formlayout__content-container-vertical {
42-
@apply col-span-7;
42+
@apply col-span-8;
4343
}
4444

4545
.sbui-formlayout__content-container-vertical--align-right {

0 commit comments

Comments
 (0)