We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With this style object:
{ maskImage: 'radial-gradient(closest-side, black, transparent)' }
Using inline-style-prefixer (via fela-preset-web), the resulting prefixed properties and rules are all unusable in Chrome:
inline-style-prefixer
fela-preset-web
-webkit-mask-image: -webkit-radial-gradient(closest-side, black, transparent),-moz-radial-gradient(closest-side, black, transparent),radial-gradient(closest-side, black, transparent); mask-image: -webkit-radial-gradient(closest-side, black, transparent); mask-image: -moz-radial-gradient(closest-side, black, transparent); mask-image: radial-gradient(closest-side, black, transparent);
Here is the correct result from stylis (via styled-jsx), that works in Chrome:
stylis
styled-jsx
-webkit-mask-image: radial-gradient(closest-side,black,transparent); mask-image: radial-gradient(closest-side,black,transparent);
The text was updated successfully, but these errors were encountered:
Is there a workaround we can use before this bug is fixed?
Sorry, something went wrong.
No branches or pull requests
With this style object:
Using
inline-style-prefixer
(viafela-preset-web
), the resulting prefixed properties and rules are all unusable in Chrome:Here is the correct result from
stylis
(viastyled-jsx
), that works in Chrome:The text was updated successfully, but these errors were encountered: