team-1/frontend/src/app.css

16 lines
218 B
CSS
Raw Normal View History

2025-08-01 18:07:11 +02:00
@import 'tailwindcss';
2025-08-02 00:52:13 +02:00
@keyframes spin-slower {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spin-slower {
animation: spin-slower 15s linear infinite;
}