blob: 45f20def91dfc9d7228e0daa853ee791893cca25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.placeHolder {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-background);
opacity: 0.1;
}
.connQty {
font-family: var(--font-normal);
font-size: 0.75em;
margin-left: 3px;
padding: 2px 7px;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: var(--bg-near-transparent);
border-radius: 30px;
}
|