From 319009a72b8889d8db5b84ad69ce4118cdf3143f Mon Sep 17 00:00:00 2001 From: Luke Bonaccorsi Date: Wed, 2 Sep 2015 22:08:52 +0100 Subject: [PATCH] Added .navbar-toggleable-md class In Bootstrap 3, the menu collapsed on the -sm- breakpoint, I believe the equivalent of this breakpoint in Bootstrap 4 is actually the -md- breakpoint. The navbar currently has no option to collapse at the -md- breakpoint and I'd like to add this. --- scss/_navbar.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 7fbd4448ef..d812212a0c 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -129,6 +129,11 @@ display: block !important; } } + &-md { + @include media-breakpoint-up(lg) { + display: block !important; + } + } }