blob: a92fffec5dc37d65e10315a2d1700e4bf9e5145b (
plain) (
blame)
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
|
.loading-overlay {
left: 0;
z-index: 50;
position: absolute;
flex-direction: column;
display: flex;
justify-content: center;
align-items: center;
flex: 1 1 auto;
width: 100%;
background: rgba(255, 255, 255, .8);
@media screen and (max-width: 575px) {
margin-top: 56px;
height: calc(100% - 56px);
}
@media screen and (min-width: 576px) {
margin-top: 75px;
height: calc(100% - 75px);
}
&--full-screen {
position: fixed;
height: 100vh;
width: 100vw;
margin-top: 0;
}
}
|