Created
June 25, 2016 08:50
-
-
Save lucprincen/f1d34dbefec6caa5f616eec887e91926 to your computer and use it in GitHub Desktop.
This file contains 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
//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