15 lines
218 B
CSS
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;
|
|
}
|