29 lines
563 B
SCSS
29 lines
563 B
SCSS
.Load-main {
|
|
opacity: 1;
|
|
transition: 0.4s;
|
|
|
|
.Load-container {
|
|
.Load-box {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background: rgba(255, 255, 255, 1);
|
|
fill-opacity: 1;
|
|
transition: 0.4s;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 9999999999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #0a0a0a !important;
|
|
|
|
span {
|
|
font-size: 50px;
|
|
letter-spacing: 10px;
|
|
color: var(--rootColor);
|
|
transition: 0.4s;
|
|
}
|
|
}
|
|
}
|
|
} |