Created
April 25, 2013 13:51
-
-
Save rupert-ong/5459847 to your computer and use it in GitHub Desktop.
Sass: Ultimate Media Query Mixin (Alwaystwisted.com)
This file contains hidden or 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
@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