mirror of
https://github.com/iv-org/invidious.git
synced 2025-07-04 04:28:29 +00:00
10 lines
105 B
CSS
10 lines
105 B
CSS
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|