Skip to content

Commit 1cf81f2

Browse files
committed
fix: select box group width
1 parent f4c9284 commit 1cf81f2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/qvism-preset/src/select-box.recipe.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const selectBoxGroup = defineRecipe({
1010
display: "flex",
1111
flexDirection: "column",
1212
gap: groupVars.base.enabled.root.gap,
13+
width: "100%",
1314
},
1415
},
1516
variants: {},
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.selectBoxGroup__root {
22
display: flex;
33
flex-direction: column;
4-
gap: var(--seed-v3-unit-s3)
4+
gap: var(--seed-v3-unit-s3);
5+
width: 100%
56
}

0 commit comments

Comments
 (0)