rfid/themes/hugo-whisper-theme/assets/scss/components/_main-menu.scss
2021-10-01 14:32:43 +02:00

33 lines
628 B
SCSS

.main-menu {
display: none;
@include media-breakpoint-up(md) {
display: block;
}
> ul {
display: flex;
align-items: center;
justify-content: flex-start;
font-family: $font-family-base;
> li {
list-style: none;
font-size: 14px;
> a {
padding: 10px 14px 10px 14px;
display: inline-block;
font-weight: normal;
text-decoration: none;
color: $primary;
&:hover {
text-decoration: underline;
color: $primary;
}
}
&.active {
> a {
font-weight: bold;
}
}
}
}
}