Skip to content

Commit

Permalink
Checkbox icon token fix (#2289)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaozler committed Jun 18, 2024
1 parent 1bbf1c6 commit 15a492c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/wet-pugs-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@kadena/react-ui": patch
---

Icon token set
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const boxClass = style({
});

export const iconClass = style({
color: token('color.icon.base.inverse.default'),
color: token('color.icon.base.inverse.@active'),
transition: 'opacity 0.2s ease, transform 0.4s ease',
transformOrigin: 'center',
transform: 'scale(0)',
Expand All @@ -121,7 +121,7 @@ export const iconClass = style({
},
// inverted
[`${labelClass}[data-inversed="true"] &`]: {
color: token('color.icon.base.default'),
color: token('color.icon.base.@active'),
},
},
});
Expand Down

0 comments on commit 15a492c

Please sign in to comment.