mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 09:48:06 +01:00
14 lines
254 B
SCSS
14 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);
|
|
}
|
|
}
|