excursions/src/components/ui/Loader/Loader.module.scss
lootboxer c46adbf0e1
All checks were successful
/ build (push) Successful in 1m27s
/ deploy (push) Successful in 10s
Добавил нормальный лоадер
2025-07-02 14:04:32 +03:00

27 lines
417 B
SCSS

.loader-container {
display: flex;
justify-content: center;
align-items: center;
width: 60px;
min-height: 60px;
height: fit-content;
}
.loader {
width: 50%;
height: 50%;
border: 8px solid #f3f3f3;
border-top: 8px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}