Skip to content

Commit

Permalink
Adding xl size to TokenImage
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed Feb 14, 2024
1 parent 42bdc9f commit 921154d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/TokenImage/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ export const root = recipe({
height: '40px',
fontSize: '11px',
},

xl: {
width: '64px',
height: '64px',
fontSize: '16px',
},
},

borderRadius: {
Expand Down Expand Up @@ -74,6 +80,11 @@ export const img = style({
maxWidth: '40px',
maxHeight: '40px',
},

[`${selectorize(root({ size: 'xl' }))} &`]: {
maxWidth: '64px',
maxHeight: '64px',
},
},
})

Expand Down

0 comments on commit 921154d

Please sign in to comment.