kgroad-frontend2/src/shared/ui/components/Loader/Loader.scss
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

20 lines
336 B
SCSS

.loader {
width: 24px;
height: 24px;
border-radius: 50%;
display: inline-block;
border-top: 3px solid #fff;
border-right: 3px solid transparent;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}