|
@@ -1,20 +1,19 @@
|
|
|
---
|
|
|
---
|
|
|
-
|
|
|
// Spinning Icons
|
|
|
// --------------------------
|
|
|
|
|
|
.#{$fa-css-prefix}-spin {
|
|
|
- -webkit-animation: fa-spin 2s infinite linear;
|
|
|
- animation: fa-spin 2s infinite linear;
|
|
|
+ -webkit-animation: #{$fa-css-prefix}-spin 2s infinite linear;
|
|
|
+ animation: #{$fa-css-prefix}-spin 2s infinite linear;
|
|
|
}
|
|
|
|
|
|
.#{$fa-css-prefix}-pulse {
|
|
|
- -webkit-animation: fa-spin 1s infinite steps(8);
|
|
|
- animation: fa-spin 1s infinite steps(8);
|
|
|
+ -webkit-animation: #{$fa-css-prefix}-spin 1s infinite steps(8);
|
|
|
+ animation: #{$fa-css-prefix}-spin 1s infinite steps(8);
|
|
|
}
|
|
|
|
|
|
-@-webkit-keyframes fa-spin {
|
|
|
+@-webkit-keyframes #{$fa-css-prefix}-spin {
|
|
|
0% {
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
transform: rotate(0deg);
|
|
@@ -25,7 +24,7 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-@keyframes fa-spin {
|
|
|
+@keyframes #{$fa-css-prefix}-spin {
|
|
|
0% {
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
transform: rotate(0deg);
|