Skip to content

Instantly share code, notes, and snippets.

@jeremyworboys
Created May 5, 2012 14:04
Show Gist options
  • Save jeremyworboys/2602707 to your computer and use it in GitHub Desktop.
Save jeremyworboys/2602707 to your computer and use it in GitHub Desktop.
SCSS: Media query generator
$bp-names: "narrow", "medium", "wide";
$bp-vals: "30em", "60em", "90em";
@mixin respond-to($name) {
@media screen and (min-width: nth($bp-vals, index($bp-names, $name))) {
@content
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment