forked from socialsensingbot/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.scss
More file actions
56 lines (43 loc) · 781 Bytes
/
app.component.scss
File metadata and controls
56 lines (43 loc) · 781 Bytes
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
44
45
46
47
48
49
50
51
52
53
54
55
56
//Includes toolbar
.content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: auto;
//border:1px solid green;
}
//Whole application except toolbar
.content-inner {
position: absolute;
width: 100%;
//top:0;
top: 0px;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
//border:1px solid red;
}
.app-loading-progress {
top: 64px;
left: 0;
right: 0;
//margin-left: -100%;
//margin-top: -100%;
position: absolute;
z-index: 1000;
width:100%;
}
.app-loading-spinner {
top: 50vh;
bottom: 50vh;
left: 50vw;
right: 50vw;
padding-left: -100%;
padding-top: -100%;
position: absolute;
z-index: 100;
opacity: 0.8;
}