parcel/style/utils/animation.css
Blake Rain 81fa1547c5
All checks were successful
Check / check (push) Successful in 1m2s
chore: further progress on new upload modal
2024-08-07 21:08:37 +01:00

23 lines
299 B
CSS

@layer utilities {
.smoothly {
transition: all 0.5s ease-in;
}
.quickly {
transition: all 0.2s ease-in;
}
.animate-rotate {
animation: rotate 1s linear infinite;
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}