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.
This commit is contained in:
Luke Bonaccorsi 2015-09-02 22:08:52 +01:00
parent d13c4b35d4
commit 319009a72b
1 changed files with 5 additions and 0 deletions

View File

@ -129,6 +129,11 @@
display: block !important;
}
}
&-md {
@include media-breakpoint-up(lg) {
display: block !important;
}
}
}