Skip to content

Instantly share code, notes, and snippets.

@sno2
Created January 22, 2020 03:03
Show Gist options
  • Save sno2/830950f78205836557b2ddabacc0cf6c to your computer and use it in GitHub Desktop.
Save sno2/830950f78205836557b2ddabacc0cf6c to your computer and use it in GitHub Desktop.
/* Sass Code */
@mixin phone {
@media screen and (min-width: 480px) {
@content;
}
}
@mixin tablet {
@media screen and (min-width: 768px) {
@content;
}
}
html {
background: red;
@include phone {
background: white;
}
@include tablet {
background: blue;
}
}
/* Compiled CSS Code */
html {
background: red;
}
@media screen and (min-width: 480px) {
html {
background: white;
}
}
@media screen and (min-width: 768px) {
html {
background: blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment