Skip to content

Instantly share code, notes, and snippets.

@nchristus
Created October 31, 2013 20:50
Show Gist options
  • Save nchristus/7256924 to your computer and use it in GitHub Desktop.
Save nchristus/7256924 to your computer and use it in GitHub Desktop.
Old IE media queries
/ Named media queries
// ==========================================================================
$bp-small: em(650px);
$bp-medium: em(1024px);
$bp-large: em(1280px);
@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