-
-
Save codedcontainer/7046a8655611c965812454d209683bdf to your computer and use it in GitHub Desktop.
Flexbox internet explorer fix for bootstrap 4 in sass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//fix for flexbox in internet explorer | |
$list: xm sm md lg xl; | |
@for $i from 1 through 12{ | |
@each $b in $list{ | |
.ie .col-#{$b}-#{$i}{ | |
padding-left: 0px !important; padding-right: 0px !important; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment