Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created May 7, 2014 21:27
Show Gist options
  • Save zastrow/94ee35f59f7d0fda2681 to your computer and use it in GitHub Desktop.
Save zastrow/94ee35f59f7d0fda2681 to your computer and use it in GitHub Desktop.
Sparkbox’s sb-media mixin with a max-width option.
@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