Skip to content

Commit 5becfa6

Browse files
committed
fixes #23926 responsive state on navbar
1 parent 404c1a3 commit 5becfa6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scss/_navbar.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
// the default flexbox row orienation. Requires the use of `flex-wrap: wrap`
9898
// on the `.navbar` parent.
9999
.navbar-collapse {
100+
flex-basis: 100%;
100101
flex-grow: 1;
101102
// For always expanded or extra full navbars, ensure content aligns itself
102103
// properly vertically. Can be easily overridden with flex utilities.
@@ -177,6 +178,9 @@
177178
// scss-lint:disable ImportantRule
178179
.navbar-collapse {
179180
display: flex !important;
181+
182+
// Changes flex-bases to auto because of an IE10 bug
183+
flex-basis: auto;
180184
}
181185
// scss-lint:enable ImportantRule
182186

0 commit comments

Comments
 (0)