From 007fdd1cbe0799dabd054c45ad50d270a2c35e57 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 6 Dec 2024 15:58:46 -0700 Subject: [PATCH] Made dropdown in navbar-expand absolute and assigned min width to fix issue 41080 --- scss/_navbar.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 86aa441eb6e3..976fb591d398 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -253,6 +253,14 @@ } } } + + @include media-breakpoint-between(md, lg) { + .dropdown-menu { + position: absolute; + top: 100%; + min-width: 200px; + } + } } } }