fix menu header small screens #39

Merged
jorge merged 2 commits from fix/header into develop 2021-10-13 10:49:00 +02:00
2 changed files with 7 additions and 2 deletions
Showing only changes of commit 8d0b6cceb1 - Show all commits

File diff suppressed because one or more lines are too long

View File

@ -377,12 +377,17 @@ main {
flex-direction: column;
min-height: unset;
padding: $global-padding;
//min-height: unset;
.menu, .menu.horizontal {
justify-content: center;
}
}
@include breakpoint(large) {
flex-direction: row;
min-height: $global-padding * 6;
padding: $global-padding 0 ;
.menu, .menu.horizontal {
justify-content: unset;
}
}
a {
color: $body-font-color;