19 lines
260 B
Plaintext
19 lines
260 B
Plaintext
|
|
.loading {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 9999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.loading.flex {
|
|
position: static;
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|
|
|