Jeremy Thomas 8 년 전
부모
커밋
404d5fdd7d
4개의 변경된 파일7개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 0
      CHANGELOG.md
  2. 1 0
      sass/utilities/_all.sass
  3. 5 0
      sass/utilities/animations.sass
  4. 0 6
      sass/utilities/mixins.sass

+ 1 - 0
CHANGELOG.md

@@ -18,6 +18,7 @@
 * Fix #512 nav grouped buttons
 * Fix #605 container example
 * Fix #458 select expanded
+* Fix #403 separate animations
 
 ## 0.4.0
 

+ 1 - 0
sass/utilities/_all.sass

@@ -2,5 +2,6 @@
 
 @import "functions.sass"
 @import "variables.sass"
+@import "animations.sass"
 @import "mixins.sass"
 @import "controls.sass"

+ 5 - 0
sass/utilities/animations.sass

@@ -0,0 +1,5 @@
+@keyframes spinAround
+  from
+    transform: rotate(0deg)
+  to
+    transform: rotate(359deg)

+ 0 - 6
sass/utilities/mixins.sass

@@ -125,12 +125,6 @@
         transform: rotate(-45deg)
         transform-origin: left bottom
 
-@keyframes spinAround
-  from
-    transform: rotate(0deg)
-  to
-    transform: rotate(359deg)
-
 =loader
   animation: spinAround 500ms infinite linear
   border: 2px solid $border