AdminLTE/build/scss/_preloader.scss

25 lines
331 B
SCSS
Raw Normal View History

2021-01-27 20:35:47 +01:00
//
// Core: Preloader
//
.preloader {
display: flex;
background-color: $main-bg;
height: 100vh;
width: 100%;
transition: height 200ms linear;
position: fixed;
left: 0;
top: 0;
z-index: $zindex-preloader;
}
@include dark-mode () {
2021-01-27 20:35:47 +01:00
.preloader {
background-color: $dark-main-bg;
color: $white;
}
}
//