27 lines
420 B
Plaintext
27 lines
420 B
Plaintext
.positionLayer {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
> div {
|
|
z-index: 100;
|
|
visibility: hidden;
|
|
will-change: transform, top;
|
|
|
|
//
|
|
width: 0;
|
|
height: 0;
|
|
position: absolute;
|
|
left: 50vw;
|
|
|
|
.loadError {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-left: -120px;
|
|
margin-top: -80px;
|
|
}
|
|
}
|
|
} |