Created
July 21, 2014 10:52
-
-
Save Altreus/30713a13d4fb77f43709 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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