Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit ce0ebbf

Browse files
NickprogerThomasBurleson
authored andcommitted
fix(layout): IE10-IE11 column-flex bug fix
Closes #8161
1 parent 60910ef commit ce0ebbf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/core/style/layout.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -410,3 +410,9 @@
410410
@include flex-properties-for-name($name);
411411
@include layout-for-name($name);
412412
}
413+
414+
/* IE10-IE11 column-flex bug fix (set proper default value) */
415+
.layout-column > .flex {
416+
-ms-flex-basis: auto;
417+
flex-basis: auto;
418+
}

0 commit comments

Comments
 (0)