Files
RegattenApp/client/scss/components/_preloader.scss
Timon Ostertun 139543199e Initial commit
2020-09-19 12:56:10 +02:00

31 lines
435 B
SCSS

/*Prealoder*/
#preloader {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 99999;
transition: all 150ms ease;
.spinner-border {
position: absolute;
top: 50%;
left: 50%;
margin-left: -15px;
}
}
.preloader-hide {
opacity: 0;
pointer-events: none;
}
.theme-light {
#preloader {
background-color: $color_white;
}
}
.theme-dark {
#preloader {
background-color: $theme-dark-background;
}
}