Skip to content

Instantly share code, notes, and snippets.

@Jakobud
Last active August 29, 2015 14:06
Show Gist options
  • Save Jakobud/fb92a26eb8f78045d5b2 to your computer and use it in GitHub Desktop.
Save Jakobud/fb92a26eb8f78045d5b2 to your computer and use it in GitHub Desktop.
SASS Respond Mixin
// Usage:
// @include respond($screen-sm) { ... }
// or
// @include respond(480px) { ... }
@mixin respond($breakpoint) {
@media only screen and (min-width: $breakpoint) { @content; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment