aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Sidebar/Sidebar.module.css
blob: 80796763691465b6e785d632d8838ea90714c453 (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
.button {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    border-radius: 2000px;
    transition: all 0.2s ease;
    padding: 4px 0px;
}

.button:hover {
    background-color: var(--color-panel);
}

.button>img {
    padding: 0px 8px;
    height: 28px;
}

button>span {
    font-size: 22px;
    font-family: var(--font-barlow-semicondensed-regular);
}