Initial commit
This commit is contained in:
30
client/scss/components/_preloader.scss
Normal file
30
client/scss/components/_preloader.scss
Normal file
@@ -0,0 +1,30 @@
|
||||
/*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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user