You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
254 B

: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);
}
}