You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
body { @include animation(my-animation 10s infinite);
}
=============screen.css==================================
Error: Undefined variable: "$experimental-support-for-mozilla".
on line 39 of D:/compass/test/sass/screen.scss, in `keyframes'
from line 9 of D:/compass/test/sass/screen.scss
I don't konw why?
The text was updated successfully, but these errors were encountered:
The latest version of Compass uses a new approach to browser-support. We also merged this code into the compass core, so there's no reason to keep using this plugin. Yay! :)
==============screen.scss===================
@import "compass/reset";
@import "animation";
@include keyframes(my-animation) {
0%, 100% {
background-color: blue;
}
50% {
background-color: red;
}
};
body {
@include animation(my-animation 10s infinite);
}
=============screen.css==================================
Error: Undefined variable: "$experimental-support-for-mozilla".
on line 39 of D:/compass/test/sass/screen.scss, in `keyframes'
from line 9 of D:/compass/test/sass/screen.scss
I don't konw why?
The text was updated successfully, but these errors were encountered: