Created
March 14, 2014 14:36
-
-
Save nchristus/9548936 to your computer and use it in GitHub Desktop.
Name media queries
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 at-least($device-width, $old-ie: "false") { | |
@media screen and (min-width: $device-width) { | |
@content; | |
} | |
@if $old-ie == "true" { | |
.lt-ie9 & { | |
@content; | |
} | |
} | |
} | |
@mixin until($device-width, $old-ie: "false") { | |
@media screen and (max-width: $device-width) { | |
@content; | |
} | |
@if $old-ie == "true" { | |
.lt-ie9 & { | |
@content; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment