From edd5cf080d3c703d0088b305142394a6903904d5 Mon Sep 17 00:00:00 2001 From: Antoine Vilain Date: Fri, 6 Dec 2024 15:47:53 -0500 Subject: [PATCH 1/2] changed navbar-nav dropdown-menu to absolute --- scss/_navbar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 86aa441eb6e3..8f3c921bac19 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -108,7 +108,7 @@ } .dropdown-menu { - position: static; + position: absolute; } } From 4bca2ebefc166fa0b40f258eb6ffa90e202f8cc2 Mon Sep 17 00:00:00 2001 From: Antoine Vilain Date: Mon, 30 Dec 2024 14:31:14 -0500 Subject: [PATCH 2/2] appears the absolute rule exists by default in navbar-nav dropdown-menu so removing entirely --- scss/_navbar.scss | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 8f3c921bac19..ec2010635836 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -106,10 +106,6 @@ color: var(--#{$prefix}navbar-active-color); } } - - .dropdown-menu { - position: absolute; - } }