summaryrefslogtreecommitdiffstats
path: root/webapp/sass/utils/_animations.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/utils/_animations.scss')
-rw-r--r--webapp/sass/utils/_animations.scss21
1 files changed, 0 insertions, 21 deletions
diff --git a/webapp/sass/utils/_animations.scss b/webapp/sass/utils/_animations.scss
deleted file mode 100644
index ffdbcb219..000000000
--- a/webapp/sass/utils/_animations.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-@charset 'UTF-8';
-
-@keyframes spin {
- from {
- transform: scale(1) rotate(0deg);
- }
-
- to {
- transform: scale(1) rotate(360deg);
- }
-}
-
-@keyframes highlight {
- from {
- @include alpha-property(background, $yellow, .5);
- }
-
- to {
- background: none;
- }
-}