about summary refs log tree commit diff
path: root/app/javascript/themes/spin/style.scss
blob: 1a9381fd0d1bbb47bf5d99563a232ccb4b3c20bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
: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);
  }
}