From 5becfa6fb1c04b57020737d7c352404e72766a0a Mon Sep 17 00:00:00 2001 From: Andres Galante Date: Tue, 12 Sep 2017 15:51:54 -0300 Subject: [PATCH] fixes #23926 responsive state on navbar --- scss/_navbar.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 45c1e05d4e..15d218e873 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -97,6 +97,7 @@ // the default flexbox row orienation. Requires the use of `flex-wrap: wrap` // on the `.navbar` parent. .navbar-collapse { + flex-basis: 100%; flex-grow: 1; // For always expanded or extra full navbars, ensure content aligns itself // properly vertically. Can be easily overridden with flex utilities. @@ -177,6 +178,9 @@ // scss-lint:disable ImportantRule .navbar-collapse { display: flex !important; + + // Changes flex-bases to auto because of an IE10 bug + flex-basis: auto; } // scss-lint:enable ImportantRule -- 2.47.2