about summary refs log tree commit diff
path: root/app/javascript/themes/spin/style.scss
diff options
context:
space:
mode:
authorkibigo! <marrus-sh@users.noreply.github.com>2017-11-16 21:50:07 -0800
committerkibigo! <marrus-sh@users.noreply.github.com>2017-11-16 21:54:12 -0800
commit4dd19054d60cff67cd8a43b88823b5c05a3c88fc (patch)
tree582b96fce4af9af1cd2db9c8757d21cfdb3e3551 /app/javascript/themes/spin/style.scss
parentb28b405b9763a0bb3df653b51e6d084b42e9a54d (diff)
Removes spin theme
Diffstat (limited to 'app/javascript/themes/spin/style.scss')
-rw-r--r--app/javascript/themes/spin/style.scss14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/javascript/themes/spin/style.scss b/app/javascript/themes/spin/style.scss
deleted file mode 100644
index 1a9381fd0..000000000
--- a/app/javascript/themes/spin/style.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-:root:root:root {
-  .button, .icon-button, .emoji-button, .account__avatar, .account__avatar-overlay {
-    animation: spin 4s linear infinite;
-  }
-}
-
-@keyframes spin {
-  from {
-    transform: rotate(0deg);
-  }
-  to {
-    transform: rotate(360deg);
-  }
-}