blob: ff25a81330cbfee87e82512bc23681792ffaa0a3 (
plain)
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
35
36
37
38
39
40
41
42
43
|
.loadingBoxContainer {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
background-color: #fdfdfd;
height: 100%;
width: 100%;
align-items: center;
.textContainer,
.loadingBox-title {
text-overflow: ellipsis;
max-width: 80%;
text-align: center;
display: flex;
flex-direction: column;
gap: 8px;
align-items: center;
white-space: normal;
word-break: all;
}
}
.textContainer {
margin: 5px;
display: block;
}
.textContainer {
justify-content: center;
align-content: center;
}
.headerText {
text-align: center;
font-weight: bold;
height: auto;
width: 100%;
}
.spinner {
text-align: center;
}
|