Skip to content

Instantly share code, notes, and snippets.

@nchristus
Created March 14, 2014 14:36
Show Gist options
  • Save nchristus/9548936 to your computer and use it in GitHub Desktop.
Save nchristus/9548936 to your computer and use it in GitHub Desktop.
Name media queries
@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