Skip to content

Instantly share code, notes, and snippets.

@lucprincen
Created June 25, 2016 08:50
Show Gist options
  • Save lucprincen/f1d34dbefec6caa5f616eec887e91926 to your computer and use it in GitHub Desktop.
Save lucprincen/f1d34dbefec6caa5f616eec887e91926 to your computer and use it in GitHub Desktop.
//IE9 flexbox grid fixes:
.no-flexbox, .no-flexboxlegacy{
.column-row{
&.half-half .column{
@include span-columns( 6 );
}
&.sidebar-left .column, &.sidebar-right .column{
@include span-columns( 8 );
}
&.sidebar-right .column:last-of-type, &.sidebar-left .column:first-of-type{
@include span-columns( 4 );
}
&.three-columns .column{
@include span-columns( 4 );
}
&.four-columns .column{
@include span-columns( 3 );
}
.column:last-of-type{
@include omega();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment