Skip to content

Instantly share code, notes, and snippets.

@kisildev
Created October 31, 2018 14:31
Show Gist options
  • Save kisildev/fac68b0699f6235176fff756ed384ebb to your computer and use it in GitHub Desktop.
Save kisildev/fac68b0699f6235176fff756ed384ebb to your computer and use it in GitHub Desktop.
Media
@mixin median($width) {
@media ( min-width: $width) {
@content;
}
}
@mixin mediax($width) {
@media ( max-width: $width) {
@content;
}
}
@mixin media($width1, $width2) {
@media ( min-width: $width1) and ( max-width: $width2) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment