Files
desktop/app/components/AnimatedRoundedProgress/AnimatedRoundedProgress.module.css
rosetta 83f38dc63f 'init'
2026-01-30 05:01:05 +02:00

12 lines
171 B
CSS

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.animatedRoundedProgress {
animation: spin 2s linear infinite;
}