Files
2026-03-22 20:56:25 +01:00

23 lines
496 B
SCSS

@import "./partial.scss";
@import "./Variables.scss";
.overlay-screen-loader {
position: fixed;
top: 0;
left:0;
width: 100%;
height: 100%;
z-index: 1000000;
background-color: $loader_bg;
animation-name: loaderEnter;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 0.4s;
-webkit-animation-name: loaderEnter;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-in;
-webkit-animation-duration: 0.4s;
}