2024-07-30 13:29:03 +02:00
|
|
|
@import '../../styles/colors.scss';
|
|
|
|
|
2024-02-28 21:49:44 +05:00
|
|
|
.loadingSpinnerOverlay {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
.loadingSpinnerContainer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loadingSpinner {
|
2024-07-30 13:29:03 +02:00
|
|
|
background: url('/favicon.png') no-repeat center / cover;
|
2024-02-28 21:49:44 +05:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-30 13:29:03 +02:00
|
|
|
.loadingSpinnerDesc {
|
|
|
|
color: white;
|
|
|
|
margin-top: 13px;
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2024-02-28 21:49:44 +05:00
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|