Skip to content

Commit

Permalink
fix(SelectMenu): invalid gap values
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Sep 7, 2023
1 parent d4e3ab6 commit 998314e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/runtime/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,10 @@ const input = {
gap: {
'2xs': 'gap-x-1',
xs: 'gap-x-1.5',
sm: 'gap-x-2',
sm: 'gap-x-1.5',
md: 'gap-x-2',
lg: 'gap-x-2',
xl: 'gap-x-2'
lg: 'gap-x-2.5',
xl: 'gap-x-2.5'
},
padding: {
'2xs': 'px-2 py-1',
Expand Down

0 comments on commit 998314e

Please sign in to comment.