-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathindex.scss
More file actions
51 lines (45 loc) · 998 Bytes
/
index.scss
File metadata and controls
51 lines (45 loc) · 998 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
aside {
display: flex;
flex-direction: column;
background-color: var(--sidebar-bg-color);
border-right: 1px solid var(--border-color);
width: 275px;
.filters {
align-items: center;
border-bottom: 1px solid var(--border-color);
display: flex;
padding: 1.5rem 0.7rem;
.funnel {
color: var(--disabled-font-color);
display: flex;
font-size: 1.2rem;
margin-right: 0.6rem;
}
}
ul.debuglist {
overflow: auto;
flex: 1;
list-style: none;
margin: 0;
padding: 0;
li {
border-bottom: 1px solid var(--border-color);
cursor: pointer;
font-size: 0.9rem;
padding: 1rem 1rem 1.5rem;
position: relative;
overflow-wrap: break-word;
&:hover,
&.selected {
background-color: var(--hover-color);
}
span {
bottom: 0;
color: var(--primary-color);
padding: 0.2rem 0.5rem;
position: absolute;
right: 0;
}
}
}
}