// IE 11 flexbox fix.
// TODO: Remove when fixed in bootstrap.
// https://github.com/twbs/bootstrap/issues/17310
@if $enable-flex {
	@each $breakpoint in map-keys($grid-breakpoints) {
		@include media-breakpoint-up($breakpoint) {
			@for $size from 1 through $grid-columns {
				.col-#{$breakpoint}-#{$size} {
					max-width: percentage($size / $grid-columns);
				}
			}
		}
	}
}
