-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathmain.module.css
More file actions
51 lines (47 loc) · 965 Bytes
/
Copy pathmain.module.css
File metadata and controls
51 lines (47 loc) · 965 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
.leftTools {
position: relative;
z-index: 2;
background-color: var(--pure-white);
grid-area: leftTools;
border-right: 1px solid black;
display: inline-flex;
flex-direction: column;
overflow: hidden;
}
.rightTools {
position: relative;
z-index: 2;
background-color: var(--pure-white);
grid-area: rightTools;
border-left: 1px solid black;
}
.footer {
grid-area: footer;
position: relative;
z-index: 2;
}
.container {
overflow-y: auto;
position: relative;
}
.container[open] {
flex: 1;
border-bottom: 1px solid var(--primary-900);
}
.title {
z-index: 1;
position: sticky;
top: 0;
background-color: var(--primary-200);
padding: var(--space-xs) var(--space-md);
border-bottom: 1px solid var(--primary-900);
}
.viewMode {
position: relative;
z-index: 2;
grid-area: view;
background-color: rgb(49, 49, 49);
font-size: var(--fs-xs);
color: var(--pure-white);
padding: var(--space-xs) var(--space-md);
}