Skip to content

Commit

Permalink
fix: select box group width
Browse files Browse the repository at this point in the history
  • Loading branch information
malangcat committed Jan 3, 2025
1 parent f4c9284 commit 1cf81f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/qvism-preset/src/select-box.recipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const selectBoxGroup = defineRecipe({
display: "flex",
flexDirection: "column",
gap: groupVars.base.enabled.root.gap,
width: "100%",
},
},
variants: {},
Expand Down
3 changes: 2 additions & 1 deletion packages/stylesheet/selectBoxGroup.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.selectBoxGroup__root {
display: flex;
flex-direction: column;
gap: var(--seed-v3-unit-s3)
gap: var(--seed-v3-unit-s3);
width: 100%
}

0 comments on commit 1cf81f2

Please sign in to comment.