-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppWithSidePanel.css
More file actions
82 lines (67 loc) · 1.27 KB
/
AppWithSidePanel.css
File metadata and controls
82 lines (67 loc) · 1.27 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.AppWithSidePanel {
display: grid;
height: 100vh;
grid-template-columns: auto 8fr;
grid-template-rows: auto;
grid-template-areas: "side results";
}
.AppSide {
width: 24em;
overflow-y: auto;
position: relative;
background-color: var(--background-color-side);
--background-color-side: var(--background-color-secondary);
}
.AppSideFixed {
position: sticky;
top: 0;
background-color: var(--background-color-side);
z-index: 3;
}
.AppSideFixed,
.AppSideMain {
padding: var(--leading);
}
.AppSideHeader {
display: flex;
}
.AppSideHeader .AppMainButton {
align-self: center;
}
.AppSideHeader .AppButton {
align-self: center;
}
.AppLogo {
font-family: Raleway, sans-serif;
font-size: 1.5rem;
line-height: 1;
margin-right: auto;
}
.AppSide .Deferred {
padding-top: 0;
}
.AppMain {
display: grid;
height: 100vh;
}
.AppMain .stats {
grid-area: stats;
display: flex;
overflow-x: hidden;
padding-top: var(--leading);
padding-left: var(--leading);
padding-bottom: var(--leading);
margin-top: -0.375em;
}
.AppMain > .Views > .ViewsTabs,
.AppMain .stats {
background-color: var(--background-color-tertiary);
}
.AppMain .AppMainPanel {
grid-area: docs;
overflow-x: hidden;
position: relative;
}
.AppWelcome {
padding-top: 25%;
}