blob: 6e43254b0b5f926ff06afdc78ccbd2ee6c26faed (
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
36
|
.button {
display: flex;
width: 100%;
cursor: pointer;
align-items: center;
border-radius: 2000px;
transition: all 0.2s ease;
padding: 4px 0px;
height: 48px;
gap: 24px;
}
.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;
transition: all 0.2s ease;
}
.button-hidden>span {
cursor: none;
pointer-events: none;
opacity: 0;
}
|