Created
October 31, 2018 14:31
-
-
Save kisildev/fac68b0699f6235176fff756ed384ebb to your computer and use it in GitHub Desktop.
Media
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 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