We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4c9284 commit 1cf81f2Copy full SHA for 1cf81f2
packages/qvism-preset/src/select-box.recipe.ts
@@ -10,6 +10,7 @@ export const selectBoxGroup = defineRecipe({
10
display: "flex",
11
flexDirection: "column",
12
gap: groupVars.base.enabled.root.gap,
13
+ width: "100%",
14
},
15
16
variants: {},
packages/stylesheet/selectBoxGroup.css
@@ -1,5 +1,6 @@
1
.selectBoxGroup__root {
2
display: flex;
3
flex-direction: column;
4
- gap: var(--seed-v3-unit-s3)
+ gap: var(--seed-v3-unit-s3);
5
+ width: 100%
6
}
0 commit comments