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
I have a CSS animation, with the following property set.
.animatedThing { animation-delay: 1s; }
After updating from 0.14 to 0.15, the animation-delay value (1s) is being interpreted as a class name, resulting in some output CSS like so:
animation-delay
1s
.Component__animatedThing__<hash> { animation-delay: Component__1s__<hash>; }
Naturally, the desired behavior is for the value to remain 1s.
The text was updated successfully, but these errors were encountered:
don't localize animation-delay etc.
9098bec
fixed webpack-contrib/css-loader#107
Upgrade postcss-modules-local-by-default
postcss-modules-local-by-default
8ca7098
It fixes webpack-contrib#107
Successfully merging a pull request may close this issue.
I have a CSS animation, with the following property set.
After updating from 0.14 to 0.15, the
animation-delay
value (1s
) is being interpreted as a class name, resulting in some output CSS like so:Naturally, the desired behavior is for the value to remain
1s
.The text was updated successfully, but these errors were encountered: