Add missing SCSS animated.
This commit is contained in:
parent
945a6bfa82
commit
0698178b89
27
scss/_animated.scss
Normal file
27
scss/_animated.scss
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
// From Font Awesome
|
||||||
|
.#{$mdi-css-prefix}-spin:before {
|
||||||
|
-webkit-animation: #{$mdi-css-prefix}-spin 2s infinite linear;
|
||||||
|
animation: #{$mdi-css-prefix}-spin 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes #{$mdi-css-prefix}-spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes #{$mdi-css-prefix}-spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user