Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rupert-ong/5459847 to your computer and use it in GitHub Desktop.
Save rupert-ong/5459847 to your computer and use it in GitHub Desktop.
Sass: Ultimate Media Query Mixin (Alwaystwisted.com)
@mixin mq($point, $IE9: false, $query1: min, $query2: width) {
@if $IE9 == true{
.lt-ie9 & {
@content;
}
@media screen and (#{$query1}-#{$query2}: $point / $base-font-size +em) {
@content;
}
}
@else {
@media screen and (#{$query1}-#{$query2}: $point / $base-font-size +em) {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment