Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
fix(layout): IE10-IE11 column-flex bug fix
Browse files Browse the repository at this point in the history
Closes #8161
  • Loading branch information
Nickproger authored and ThomasBurleson committed Jun 3, 2016
1 parent 60910ef commit ce0ebbf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/core/style/layout.scss
Expand Up @@ -410,3 +410,9 @@
@include flex-properties-for-name($name);
@include layout-for-name($name);
}

/* IE10-IE11 column-flex bug fix (set proper default value) */
.layout-column > .flex {
-ms-flex-basis: auto;
flex-basis: auto;
}

0 comments on commit ce0ebbf

Please sign in to comment.