Skip to content

Instantly share code, notes, and snippets.

@mauroreisvieira
Last active March 19, 2018 20:09
Show Gist options
  • Save mauroreisvieira/883e2146133bd085a9138c833511edca to your computer and use it in GitHub Desktop.
Save mauroreisvieira/883e2146133bd085a9138c833511edca to your computer and use it in GitHub Desktop.
Mixin to use in SCSS
@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