From 404d5fdd7d3e8053bc9858b2d8a768c18c8be56d Mon Sep 17 00:00:00 2001 From: Jeremy Thomas Date: Sun, 2 Apr 2017 17:52:03 +0100 Subject: [PATCH] Fix #403 --- CHANGELOG.md | 1 + sass/utilities/_all.sass | 1 + sass/utilities/animations.sass | 5 +++++ sass/utilities/mixins.sass | 6 ------ 4 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 sass/utilities/animations.sass diff --git a/CHANGELOG.md b/CHANGELOG.md index 61726547..43c3199b 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/sass/utilities/_all.sass b/sass/utilities/_all.sass index 77ed07b3..568299c8 100644 --- a/sass/utilities/_all.sass +++ b/sass/utilities/_all.sass @@ -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 index 00000000..a14525d7 --- /dev/null +++ b/sass/utilities/animations.sass @@ -0,0 +1,5 @@ +@keyframes spinAround + from + transform: rotate(0deg) + to + transform: rotate(359deg) diff --git a/sass/utilities/mixins.sass b/sass/utilities/mixins.sass index 8ac340c7..cd820150 100644 --- a/sass/utilities/mixins.sass +++ b/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