- Introduced a new Spinner component for loading indicators. - Removed unused btn_arr_up.svg asset and related styles. - Updated radio button styles for improved UI consistency. - Added new PDF view styles for enhanced document presentation. - Included spinner styles for better loading visuals.
37 lines
742 B
SCSS
37 lines
742 B
SCSS
.spinner-wrap{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: rgba($color: #101010, $alpha: 0.5);
|
|
z-index: 2000000;
|
|
}
|
|
.loader {
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
background-color: #fff;
|
|
box-shadow: 32px 0 #fff, -32px 0 #fff;
|
|
position: relative;
|
|
animation: flash 0.5s ease-out infinite alternate;
|
|
}
|
|
|
|
@keyframes flash {
|
|
0% {
|
|
background-color: #FFF2;
|
|
box-shadow: 32px 0 #FFF2, -32px 0 #FFF;
|
|
}
|
|
50% {
|
|
background-color: #FFF;
|
|
box-shadow: 32px 0 #FFF2, -32px 0 #FFF2;
|
|
}
|
|
100% {
|
|
background-color: #FFF2;
|
|
box-shadow: 32px 0 #FFF, -32px 0 #FFF2;
|
|
}
|
|
}
|
|
|