blob: 2036eb9dff75d380e9d383ed0b6b5c1b87b995af (
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
44
45
46
47
48
49
50
51
52
53
54
55
|
.app {
display: flex;
flex-flow: column nowrap;
grid-template-rows: auto 1fr;
height: 100vh;
overflow: hidden;
}
.main {
display: flex;
flex-flow: row nowrap;
flex-grow: 1;
overflow: hidden;
}
.header {
font-size: 1.2em;
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: space-between;
background: black;
color: white;
padding: 1em;
a {
color: white;
}
}
.sidebar {
width: calc((6 / 16) * 100%);
height: 100%;
grid-area: sidebar;
border-right: 1px solid black;
overflow-y: auto;
li {
border-bottom: 1px solid gray;
}
}
.details {
width: calc((10 / 16) * 100%);
overflow: hidden;
height: 100%;
}
.noRequest, .noRequestSelected {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
|