Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active August 29, 2015 14:05
Show Gist options
  • Save Kcko/0251eaa2c8cbf89ece27 to your computer and use it in GitHub Desktop.
Save Kcko/0251eaa2c8cbf89ece27 to your computer and use it in GitHub Desktop.
Respond mixin - MQ
/*
@author - Roman Janko, rjwebdesign.cz
@date - 28.8.2014
*/
@mixin respond($minWidth: false, $maxWidth: false) {
@if $minWidth and $maxWidth
{
@media screen and (min-width: $minWidth) and (max-width: $maxWidth) { @content; }
}
@else if $minWidth
{
@media screen and (min-width: $minWidth) { @content; }
}
@else if $maxWidth
{
@media screen and (max-width: $maxWidth) { @content; }
}
@else
{
@warn "error - undefined params";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment