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
|
* {
all: unset;
font-family: 'SF Pro';
font-size: 16px;
font-feature-settings: 'tnum';
color: #FFF;
}
.bar-1, .bar-2 {
background-color: rgba(43, 48, 59, 0.5);
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
}
.end {
> box {
padding: 0 8px;
> label:first-child {
padding-right: 16px;
}
}
label:last-child {
margin-right: 12px;
}
box label:last-child {
margin-left: 12px;
}
}
.workspaces button {
label {
padding: 0 13px;
}
&:hover {
background: rgba(0, 0, 0, 0.2);
}
&.active {
background: rgba(0, 0, 0, 0.4);
}
&:hover, &.active {
box-shadow: inset 0 -3px #FAA14F;
}
}
|