mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
15 lines
254 B
SCSS
15 lines
254 B
SCSS
: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);
|
|
}
|
|
}
|