team-1/frontend/src/app.css
2025-08-02 00:52:13 +02:00

15 lines
218 B
CSS

@import 'tailwindcss';
@keyframes spin-slower {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spin-slower {
animation: spin-slower 15s linear infinite;
}