Skip to content

Commit

Permalink
fix: badge outline style
Browse files Browse the repository at this point in the history
  • Loading branch information
ajbura committed Feb 4, 2024
1 parent c188947 commit f4950bc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/badge/Badge.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,25 @@ export const Badge = recipe({
backgroundColor: Main,
color: OnMain,
borderColor: MainLine,
outlineColor: MainLine,
},
Soft: {
backgroundColor: Container,
color: OnContainer,
borderColor: ContainerLine,
outlineColor: ContainerLine,
},
None: {
backgroundColor: "inherit",
color: Main,
borderColor: Main,
outlineColor: Main,
},
},
outlined: {
true: {
borderWidth: config.borderWidth.B300,
outlineWidth: config.borderWidth.B300,
outlineStyle: "solid",
},
},
radii: RadiiVariant,
Expand Down

0 comments on commit f4950bc

Please sign in to comment.