|
@@ -2,16 +2,16 @@
|
|
|
// --------------------------
|
|
|
|
|
|
.#{$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);
|
|
@@ -22,7 +22,7 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-@keyframes fa-spin {
|
|
|
+@keyframes #{$fa-css-prefix}-spin {
|
|
|
0% {
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
transform: rotate(0deg);
|