Created
August 8, 2014 04:37
-
-
Save JesseHerrick/fe73d168b22e8c8492d6 to your computer and use it in GitHub Desktop.
My SCSS breakpoints.
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
// responsiveness | |
@mixin breakpoint($point) { | |
@if $point == morbidly-obese-bear { | |
@media (min-width: 1601px) { @content; } | |
} | |
@if $point == papa-bear { | |
@media (max-width: 1600px) { @content; } | |
} | |
@else if $point == mama-bear { | |
@media (max-width: 1250px) { @content; } | |
} | |
@else if $point == goldilocks { | |
@media (max-width: 768px) { @content; } | |
} | |
@else if $point == baby-bear { | |
@media (max-width: 650px) { @content; } | |
} | |
@else if $point == really-baby-bear { | |
@media (max-width: 350px) { @content; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment