Skip to content

Instantly share code, notes, and snippets.

@codedcontainer
Created November 15, 2016 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codedcontainer/7046a8655611c965812454d209683bdf to your computer and use it in GitHub Desktop.
Save codedcontainer/7046a8655611c965812454d209683bdf to your computer and use it in GitHub Desktop.
Flexbox internet explorer fix for bootstrap 4 in sass
//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