blob: 9baf415d7fedb670b53b8d433b3a0419b869afdf (
plain) (
blame)
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
|
.button {
display: flex;
width: 100%;
cursor: pointer;
align-items: center;
border-radius: 2000px;
transition: all 0.2s ease;
padding: 4px 0px;
height: 48px;
}
.button:hover,
.button-selected,
.button-selected:hover {
background-color: var(--color-panel);
}
.button>img {
height: 28px;
width: 28px;
transform: translateX(10px);
}
button>span {
font-size: 22px;
font-family: var(--font-barlow-semicondensed-regular);
white-space: nowrap;
margin-left: 16px;
}
.button-hidden>span {
cursor: none;
pointer-events: none;
opacity: 0;
}
|