blob: f6c0f63f9556ee1978d225dbc94652b48be2ae19 (
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
30
31
32
33
34
|
.loading-overlay {
left: 0;
z-index: 51;
position: absolute;
flex-direction: column;
display: flex;
justify-content: center;
align-items: center;
flex: 1 1 auto;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .8);
&__container {
position: absolute;
top: 33%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
&__message {
margin-top: 32px;
font-weight: 400;
font-size: 20px;
color: $manatee;
}
}
.spinner {
height: 58px;
width: 58px;
}
|