Skip to content

Commit

Permalink
feat(theme-utils): add current spacing token
Browse files Browse the repository at this point in the history
  • Loading branch information
andresz1 committed Apr 18, 2023
1 parent 5b1eb81 commit 31e5b25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/utils/theme/src/defaultTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ export const defaultTheme: Theme = {
},
spacing: {
auto: 'auto',
current: '1em',
none: '0px',
sm: '0.25rem',
md: '0.5rem',
Expand Down
1 change: 1 addition & 0 deletions packages/utils/theme/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ export interface Theme {
}
spacing: {
auto: string
current: string
none: string
sm: string
md: string
Expand Down

0 comments on commit 31e5b25

Please sign in to comment.