Created
May 19, 2014 11:08
-
-
Save gssxgss/a0d88975b5f38fc456ba to your computer and use it in GitHub Desktop.
media query mixin
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
// media query break point | |
// if 1em == 16px then 40em == 640px | |
=media($point) | |
@if $point == "mobile" | |
@media (max-width: 40em) | |
@content | |
@else if $point == "mobile2x" | |
@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 2dppx) | |
@content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment