Created
May 7, 2014 21:27
-
-
Save zastrow/94ee35f59f7d0fda2681 to your computer and use it in GitHub Desktop.
Sparkbox’s sb-media mixin with a max-width option.
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
@mixin sb-media($min, $max:"") { | |
@if $no-mq-support{ | |
@if $min < $serve-to-nomq-max-width{ | |
@content; | |
} | |
} | |
@else if $max != "" { | |
@media ( 'min-width:' + $min ) and ( 'max-width:' + $max ) { | |
@content; | |
} | |
} @else { | |
@media ( 'min-width:' + $min ) { | |
@content; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment