From b763915211b249f3a0671745fdc2ece4cf908763 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Mon, 9 Feb 2026 09:12:07 +0100 Subject: [PATCH] fix: enable scrolling in mobile navigation menu The mobile category menu (``#navbarContentMobile``) could not scroll when its content exceeded the viewport height, because no overflow or height constraint was set on the collapse container. Add ``max-height: calc(100vh - 60px)``, ``overflow-y: auto`` and ``-webkit-overflow-scrolling: touch`` to allow touch-scrolling through the full category list on mobile devices. --- resources/shop/css/site.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/shop/css/site.css b/resources/shop/css/site.css index c89327e7..c1df1ce0 100644 --- a/resources/shop/css/site.css +++ b/resources/shop/css/site.css @@ -397,6 +397,11 @@ div.megamenu ul.megamenu li.megamenu.level1 } @media (max-width: 991.98px){ + #navbarContentMobile { + max-height: calc(100vh - 60px); + overflow-y: auto; + -webkit-overflow-scrolling: touch; + } #navbarContentMobile .navbar-nav { flex-direction: column; }