File size: 494 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
.PageLoader {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
// display: none;
width: 100vw;
height: 100vh;
background: var(--bg-primery-c);
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 24px;
}
.box {
width: 150px;
height: 150px;
}
.icon {
width: 100%;
height: auto;
}
|