27 lines
417 B
SCSS
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);
|
|
}
|
|
}
|