Created
January 22, 2020 03:03
-
-
Save sno2/830950f78205836557b2ddabacc0cf6c to your computer and use it in GitHub Desktop.
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
/* 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