feat(styles): add spin-reverse animation and corresponding class for enhanced loading effects

This commit is contained in:
2026-01-04 23:19:38 -06:00
parent 1e98d8e859
commit f90fe55372

View File

@@ -167,3 +167,16 @@ select.input-field option {
-ms-overflow-style: none;
scrollbar-width: none;
}
@keyframes spin-reverse {
from {
transform: rotate(360deg);
}
to {
transform: rotate(0deg);
}
}
.animate-spin-reverse {
animation: spin-reverse 1s linear infinite;
}