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
Here is how my SCSS is compiling:
@-moz-keyframes fadeInDown { /* line 2, /Users/Oliver/Dropbox/Sites/oliverash.me/sass/_fadeInDown.scss */ 0% { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); } /* line 6, /Users/Oliver/Dropbox/Sites/oliverash.me/sass/_fadeInDown.scss */ 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } }
Keyframes are being generated for each vendor, however the vendor prefix on the CSS transform is for some reason sticking to -webkit.
transform
-webkit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is how my SCSS is compiling:
Keyframes are being generated for each vendor, however the vendor prefix on the CSS
transform
is for some reason sticking to-webkit
.The text was updated successfully, but these errors were encountered: