Newer
Older
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
@import '../../styles/config/colors';
.menu {
display: flex;
flex-direction: column;
height: inherit;
padding: 1rem;
box-shadow: 0px 5px 5px rgb(0 0 0 / 20%), 0px 3px 14px rgb(0 0 0 / 12%),
0px 8px 10px rgb(0 0 0 / 14%);
border-top: unset;
border-right: unset;
background-color: $grey-dark;
.logo-container {
display: flex;
}
.logo {
margin: auto;
max-width: 4rem;
}
a {
display: block;
padding: 0.5rem 0;
text-decoration: none;
color: $text-grey;
&:hover {
color: $gold;
}
}
.active {
color: $gold;
}
.menu-list {
margin-top: 1.5rem;
}
.administration {
margin-top: auto;
}
}