sigit.io/src/components/Spinner/style.module.scss

13 lines
153 B
SCSS
Raw Normal View History

2024-08-14 12:25:33 +00:00
.spin {
animation: spin 5s linear infinite;
2024-08-14 12:25:33 +00:00
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}