travisvn_obsidian-vision-re.../src/styles/components/processing-display.css
2025-02-06 15:51:56 -05:00

16 lines
225 B
CSS

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.animate-spin {
animation: spin 1s linear infinite;
}
.animate-spin-slower {
animation: spin 2s linear infinite;
}