-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathApp.scss
More file actions
49 lines (44 loc) · 860 Bytes
/
App.scss
File metadata and controls
49 lines (44 loc) · 860 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
.App {
padding: 10px 10px 5px 10px;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
.loader {
display: flex;
justify-items: center;
justify-content: center;
align-items: center;
padding: 200px;
width: 100%;
}
> .header {
position: fixed;
z-index: 1;
background: #fff;
width: 100%;
padding-right: 15px;
border-bottom: 1px solid #F5F5F5;
}
.headerPlaceholder {
height: 60px;
background-color: #fdfdfd;
}
.body {
position: relative;
display: flex;
flex-grow: 1;
background-color: white;
}
.footer {
display: flex;
position: relative;
border-top: 1px solid #F5F5F5;
background-color: #ffffff;
padding-top: 5px;
width: 100%;
font-size: 10px;
text-align: right;
justify-content: space-between;
}
}