mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
320 B
25 lines
320 B
//
|
|
// 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;
|
|
}
|
|
|
|
.dark-mode {
|
|
.preloader {
|
|
background-color: $dark-main-bg;
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
//
|