Skip to content

Commit

Permalink
fix(utils): k-justify-content-stretch is not IE compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Jun 18, 2021
1 parent ecbcd5e commit 6634eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/default/scss/utils/_flex.scss
Expand Up @@ -128,7 +128,7 @@
.k-justify-content-between { justify-content: space-between; }
.k-justify-content-around { justify-content: space-around; }
.k-justify-content-evenly { justify-content: space-evenly; }
.k-justify-content-stretch > * { flex: 1 1 0; }
.k-justify-content-stretch > * { flex: 1 0 0%; }


// Justify items
Expand Down

0 comments on commit 6634eec

Please sign in to comment.