Removing flex-basis: 0 to make items size properly in IE11 (#16557)

This commit is contained in:
Shaunak Kashyap 2018-02-06 18:46:06 -08:00 committed by GitHub
parent ca283c7763
commit c5d41437e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View file

@ -1162,10 +1162,7 @@ main {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-flex-basis: 0;
-ms-flex-preferred-size: 0;
flex-basis: 0; }
flex-grow: 1; }
.kuiFlexGroup--gutterSmall {
margin: -4px; }

View file

@ -4,7 +4,6 @@
.kuiFlexItem {
flex-grow: 1;
flex-basis: 0;
}
}