Files
kspguti-schedule/src/shared/ui/styles.module.scss
2023-10-15 00:58:12 +04:00

15 lines
338 B
SCSS

.spinner {
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-left: 2px solid transparent;
border-top: 2px solid transparent;
width: 16px;
height: 16px;
animation: spin 1s linear infinite;
margin-right: 8px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}