blob: 6f42ccf7e5375c94516a5fdf54f15023170e6953 (
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
|
.proxy {
position: relative;
padding: 5px;
border-radius: 8px;
@media (--breakpoint-not-small) {
border-radius: 10px;
padding: 10px;
}
background-color: var(--color-bg-proxy-selected);
&.now {
background-color: var(--color-focus-blue);
color: #ddd;
}
&.error {
opacity: 0.5;
}
}
.proxyType {
font-family: var(--font-mono);
font-size: 0.6em;
@media (--breakpoint-not-small) {
font-size: 1em;
}
}
.proxyName {
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 5px;
font-size: 0.85em;
@media (--breakpoint-not-small) {
font-size: 1.1em;
}
}
.proxyLatencyWrap {
height: 30px;
display: flex;
align-items: flex-end;
}
|