Last active
March 19, 2018 20:09
-
-
Save mauroreisvieira/883e2146133bd085a9138c833511edca to your computer and use it in GitHub Desktop.
Mixin to use in SCSS
This file contains 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 mobile($max-w : $mobile) { | |
@media (max-width: $max-w) { | |
@content; | |
} | |
} | |
@mixin tablet($max-w : $tablet) { | |
@media (max-width: $max-w) { | |
@content; | |
} | |
} | |
@mixin desktop($max-w : $desktop) { | |
@media (min-width: $max-w) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment