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
For some reason you're adding quotation marks around zoom syntax and makes animation not work in IE.
@keyframes zoom { from { transform: scale(1, 1); } to { transform: scale(1.05, 1.05) rotate(0.02deg); } }
to:
@keyframes "zoom" { from { transform: scale(1, 1); } to { transform: scale(1.05, 1.05) rotate(0.02deg); } }
The text was updated successfully, but these errors were encountered:
you're right, have to look into this, thanks
Sorry, something went wrong.
I think it's most likely caused by a library I'm using natxet/CssMin#16
34aaa7d
nope, my bad, will fix the tests soon, but I fixed the version online
No branches or pull requests
For some reason you're adding quotation marks around zoom syntax and makes animation not work in IE.
to:
The text was updated successfully, but these errors were encountered: