-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Conversation
if everything is okay can you merge my pr @davidsoderberg |
Hi @sagnik3788, I think it should be |
Yes, you are correct it should be WebkitTextFillColor due to the camelCase property naming convention . i correct this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sagnik3788 please run the prettier and I'll approve this. Thanks!
@@ -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', |
There was a problem hiding this comment.
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.
What change does this PR introduce?
solve the kebab-case for css properties warning
Why was this change needed?
solve issue #4294 @LetItRock
Other information (Screenshots)