24 lines
403 B
SCSS
Executable File
24 lines
403 B
SCSS
Executable File
// ----------------------------------------------
|
|
// Preloader Style
|
|
// ----------------------------------------------
|
|
|
|
.preloader {
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0px;
|
|
position: fixed;
|
|
z-index: 99999;
|
|
background: #fff;
|
|
}
|
|
|
|
.lds-ripple {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 40px;
|
|
position: absolute;
|
|
top: calc(50% - 3.5px);
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
}
|