mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
32 lines
628 B
SCSS
32 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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|