Skip to content

Commit

Permalink
fix(checkbox): fix the box sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed Aug 17, 2023
1 parent b426d13 commit 1b7e31e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ export const inputCheckboxContainer: ReturnType<typeof defineRecipe> =
defineRecipe({
base: {
_fullWidth: {
width: 'calc(100% - (var(--size-checkbox-padding-horizontal) * 2))',
width: '100%',
},

alignItems: 'center',
borderRadius: 'var(--size-radius-s)',
boxSizing: 'border-box',
display: 'flex',
gap: 'var(--size-checkbox-gap)',
px: 'var(--size-checkbox-padding-horizontal)',
Expand Down

0 comments on commit 1b7e31e

Please sign in to comment.