Skip to content

Commit

Permalink
Fix menu breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mlegait committed Feb 12, 2025
1 parent 51f6573 commit 1dc85e1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
$breakpoint-menu: 1040px;

body .burgerMenu:before {
content: '';
display: block;
Expand Down Expand Up @@ -199,7 +201,7 @@ body.burgerMenu--open .burgerMenu:before {
display: none;
}

@media (min-width: $screen-md-min) {
@media (min-width: $breakpoint-menu) {
.burgerMenu {
display: none;
}
Expand Down Expand Up @@ -252,6 +254,7 @@ body.burgerMenu--open .burgerMenu:before {
}

&--langue {
display: flex;
background-color: $color-turquoise;
color: $color-bleu-ciel;

Expand Down

0 comments on commit 1dc85e1

Please sign in to comment.