Files
invidious/assets/css/animation.css
2025-04-30 20:04:21 -04:00

10 lines
105 B
CSS

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