Skip to content

Instantly share code, notes, and snippets.

@Ricardo-Diaz
Created November 5, 2012 05:02
Show Gist options
  • Save Ricardo-Diaz/4015433 to your computer and use it in GitHub Desktop.
Save Ricardo-Diaz/4015433 to your computer and use it in GitHub Desktop.
SASS: Min/Max Breakpoint
$breakpoint-medium-not-wide: 500px 700px;
.baz {
@include breakpoint($breakpoint-medium-not-wide) {...}
@media (min-width: 500px) and (max-width: 700px) {.baz {...}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment