blob: 19d0a931122ae53dd910dc797522969d9460c0cd (
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
43
44
45
46
47
48
|
.navBar {
display: flex;
justify-content: space-around;
align-items: center;
padding: 0.5rem 0;
background-color: var(--background-color);
max-width: 48rem;
margin-inline: auto;
}
.vertical {
flex-direction: column;
height: 100%;
justify-content: flex-start;
padding-top: 1rem;
gap: 1rem;
border-top: none;
}
.link {
flex: 1 0;
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: var(--text-color);
padding: 0.25rem 0;
border-radius: 0.5rem;
}
.link svg {
width: 1.375rem;
height: 1.375rem;
fill: none;
stroke-width: 2;
}
.link span {
font-size: 13px;
line-height: 1;
font-family: system-ui;
}
.active {
color: var(--button-background-color);
}
|