diff options
| author | Catalin Zalog <[email protected]> | 2015-10-01 22:03:05 +0300 |
|---|---|---|
| committer | Catalin Zalog <[email protected]> | 2015-10-01 22:03:05 +0300 |
| commit | e598307a423c10aadac8f49e64bf43837a776306 (patch) | |
| tree | e456a65091d37e585f8a3bb1b94bf81a48a44387 | |
| parent | a89bfc65252f648469e84242289b8a45a49d08e9 (diff) | |
| download | bootstrap-e598307a423c10aadac8f49e64bf43837a776306.tar.xz bootstrap-e598307a423c10aadac8f49e64bf43837a776306.zip | |
v4 - flexbox ie10+ compatibility
| -rw-r--r-- | scss/mixins/_grid.scss | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index 3fc45f41e..ecc8c871f 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -46,6 +46,7 @@ @mixin make-col-span($size, $columns: $grid-columns) { @if $enable-flex { flex: 0 0 percentage($size / $columns); + max-width: percentage($size / $columns); } @else { width: percentage($size / $columns); } |
