Skip to content

Commit

Permalink
fix: use size variable tokens in storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewferry authored Oct 7, 2023
1 parent 6b2b33c commit 5a4d9ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tokens/stories/size.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Size = {
display: 'grid',
gridTemplateColumns: 'auto auto 1fr',
alignItems: 'center',
gap: '2.4rem',
gap: 'var(--lp-size-24)',
}}
>
{Object.entries(sizes).map(([key, value]) => (
Expand All @@ -28,7 +28,7 @@ export const Size = {
style={{
backgroundColor: 'var(--lp-color-system-green-500)',
width: value,
height: '1.6rem',
height: 'var(--lp-size-16)',
}}
/>
</>
Expand Down

0 comments on commit 5a4d9ba

Please sign in to comment.