forked from Transparency/kgroad-frontend2
55 lines
865 B
SCSS
55 lines
865 B
SCSS
@import "@/shared/ui/variables.scss";
|
|
|
|
.nav-menu {
|
|
padding: 48px 30px 30px 30px;
|
|
width: 100%;
|
|
height: 100vh;
|
|
min-height: 600px;
|
|
position: fixed;
|
|
top: 72px;
|
|
left: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 26px;
|
|
background-color: white;
|
|
overflow: scroll;
|
|
|
|
a,
|
|
button {
|
|
justify-content: flex-start;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
&__link_active {
|
|
color: $light-blue;
|
|
}
|
|
|
|
&__language {
|
|
button {
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
color: #66727f;
|
|
img {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
}
|
|
&-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
a {
|
|
color: #66727f;
|
|
}
|
|
}
|
|
|
|
&_active {
|
|
color: black !important;
|
|
font-weight: 700 !important;
|
|
}
|
|
}
|
|
}
|