Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorJulien Deswaef <judeswae@thoughtworks.com>2019-02-16 20:22:18 +0300
committerJulien Deswaef <judeswae@thoughtworks.com>2019-02-16 20:22:18 +0300
commitb2c513c47f4699d048a264821a3bc776770d4213 (patch)
tree6b5e5f75f7007e4db69f46c75a43c63509d9db8d /scss
parent37503352749c272f4d5feb8da250c7723370218d (diff)
Merge pull request #158 from vanokhin/#140
Change animation names according to fa-css-prefix variable
Diffstat (limited to 'scss')
-rw-r--r--scss/_animated.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/scss/_animated.scss b/scss/_animated.scss
index 8a020dbff..543d5b33d 100644
--- a/scss/_animated.scss
+++ b/scss/_animated.scss
@@ -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);