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