From 1dc85e19a1518da65fcd1a34568fa69187fa3851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mich=C3=A8le=20Legait?= Date: Wed, 12 Feb 2025 21:21:27 +0100 Subject: [PATCH] Fix menu breakpoint --- .../web/app/stylesheets/partials/_navbar-animated.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/resources/web/app/stylesheets/partials/_navbar-animated.scss b/src/main/resources/web/app/stylesheets/partials/_navbar-animated.scss index d2e51f9..be8b7eb 100644 --- a/src/main/resources/web/app/stylesheets/partials/_navbar-animated.scss +++ b/src/main/resources/web/app/stylesheets/partials/_navbar-animated.scss @@ -1,3 +1,5 @@ +$breakpoint-menu: 1040px; + body .burgerMenu:before { content: ''; display: block; @@ -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; } @@ -252,6 +254,7 @@ body.burgerMenu--open .burgerMenu:before { } &--langue { + display: flex; background-color: $color-turquoise; color: $color-bleu-ciel;