]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Fix #403
authorJeremy Thomas <bbxdesign@gmail.com>
Sun, 2 Apr 2017 16:52:03 +0000 (17:52 +0100)
committerJeremy Thomas <bbxdesign@gmail.com>
Sun, 2 Apr 2017 16:52:24 +0000 (17:52 +0100)
CHANGELOG.md
sass/utilities/_all.sass
sass/utilities/animations.sass [new file with mode: 0644]
sass/utilities/mixins.sass

index 6172654732ca3eb5f2317e45d16056067ef7d425..43c3199bc2be548e97bc6fe04c96fc5ed6cc449d 100644 (file)
@@ -18,6 +18,7 @@
 * Fix #512 nav grouped buttons
 * Fix #605 container example
 * Fix #458 select expanded
+* Fix #403 separate animations
 
 ## 0.4.0
 
index 77ed07b38287535a9a2d5b01404fed27a896743f..568299c831aff41645878f4561fbb12dfd04e991 100644 (file)
@@ -2,5 +2,6 @@
 
 @import "functions.sass"
 @import "variables.sass"
+@import "animations.sass"
 @import "mixins.sass"
 @import "controls.sass"
diff --git a/sass/utilities/animations.sass b/sass/utilities/animations.sass
new file mode 100644 (file)
index 0000000..a14525d
--- /dev/null
@@ -0,0 +1,5 @@
+@keyframes spinAround
+  from
+    transform: rotate(0deg)
+  to
+    transform: rotate(359deg)
index 8ac340c75dae1ca17aa82e02a35ed6806131e579..cd820150055877aac0d692937ed188116ea2aea9 100644 (file)
         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