Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the kebab-case for css properties warning #4301

Merged
merged 10 commits into from
Oct 23, 2023
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',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line should have the same indentation as the others.

},
},
},
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
Loading