Skip to content

Instantly share code, notes, and snippets.

@waldofe
Last active March 5, 2016 15:04
Show Gist options
  • Save waldofe/a02c948147ad0674ecae to your computer and use it in GitHub Desktop.
Save waldofe/a02c948147ad0674ecae to your computer and use it in GitHub Desktop.
Sass mixin for media limitations
@mixin respond-to($type, $query) {
@media ($type: $query) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment