From aae4eea5e2d79f6f3bda7ebd0a6a6e5bdad4f126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 5 Dec 2022 10:30:04 +0100 Subject: [PATCH] lille: limit width of burger menu on mobile (#72016) --- static/lille/_custom.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/lille/_custom.scss b/static/lille/_custom.scss index e08335eb..242b0ec1 100644 --- a/static/lille/_custom.scss +++ b/static/lille/_custom.scss @@ -138,6 +138,9 @@ div.gru-nav .gru-nav-button { margin-bottom: 0; position: absolute; width: $width; + @media screen and ($max-mobile-viewport) { + width: 100%; + } border-top: 0; z-index: 1000; } -- 2.39.2