mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-21 02:39:00 -05:00
10 lines
105 B
CSS
10 lines
105 B
CSS
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|