1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

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

View file

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