invidious/assets/css/animation.css

10 lines
105 B
CSS

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}