Skip to content

Instantly share code, notes, and snippets.

@Altreus
Created July 21, 2014 10:52
Show Gist options
  • Save Altreus/30713a13d4fb77f43709 to your computer and use it in GitHub Desktop.
Save Altreus/30713a13d4fb77f43709 to your computer and use it in GitHub Desktop.
$breakpoint: 992px;
@mixin small-screen {
@media (max-width: $breakpoint - 1) {
@content;
}
}
@mixin big-screen {
@media (min-width: $breakpoint) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment