We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404c1a3 commit 5becfa6Copy full SHA for 5becfa6
scss/_navbar.scss
@@ -97,6 +97,7 @@
97
// the default flexbox row orienation. Requires the use of `flex-wrap: wrap`
98
// on the `.navbar` parent.
99
.navbar-collapse {
100
+ flex-basis: 100%;
101
flex-grow: 1;
102
// For always expanded or extra full navbars, ensure content aligns itself
103
// properly vertically. Can be easily overridden with flex utilities.
@@ -177,6 +178,9 @@
177
178
// scss-lint:disable ImportantRule
179
180
display: flex !important;
181
+
182
+ // Changes flex-bases to auto because of an IE10 bug
183
+ flex-basis: auto;
184
}
185
// scss-lint:enable ImportantRule
186
0 commit comments