Skip to content

Commit

Permalink
Merge pull request #4301 from sagnik3788/next
Browse files Browse the repository at this point in the history
Fix the kebab-case for css properties warning
  • Loading branch information
LetItRock authored Oct 23, 2023
2 parents cfde40b + 7a9686b commit d127654
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/design-system/button/Button.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const getSubtleStyles = (theme) => {
backgroundColor: dark ? theme.white : 'transparent',
backgroundClip: 'none !important',
color: 'transparent',
'-webkit-text-fill-color': 'initial !important',
WebkitTextFillColor: 'initial !important',
},
},
},
Expand All @@ -85,7 +85,7 @@ export const getSubtleStyles = (theme) => {
backgroundColor: dark ? theme.white : 'transparent',
backgroundClip: 'none !important',
color: 'transparent',
'-webkit-text-fill-color': 'initial !important',
WebkitTextFillColor: 'initial !important',
},
},
},
Expand Down

0 comments on commit d127654

Please sign in to comment.