Skip to content

Instantly share code, notes, and snippets.

@grayghostvisuals
Created October 23, 2012 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grayghostvisuals/3936447 to your computer and use it in GitHub Desktop.
Save grayghostvisuals/3936447 to your computer and use it in GitHub Desktop.
Handy mixin for Sass that helps to ease the pain of writing media queries
_mixin.scss
@mixin respond($media-type, $value) {
@media ($media-type: $value) {
@content
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment