From 0698178b8929cbc6575da762caa8d5328f014a3f Mon Sep 17 00:00:00 2001 From: Austin Andrews Date: Tue, 4 Apr 2017 10:15:56 -0500 Subject: [PATCH] Add missing SCSS animated. --- scss/_animated.scss | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 scss/_animated.scss diff --git a/scss/_animated.scss b/scss/_animated.scss new file mode 100644 index 0000000..6d2bc68 --- /dev/null +++ b/scss/_animated.scss @@ -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); + } +} \ No newline at end of file