Created
February 10, 2016 10:43
-
-
Save geckotang/3d437225f65d4c88a1b4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin mq-hoge { | |
@media (max-width: 100px) { | |
@content; | |
} | |
} | |
.hoge { | |
background-color:tomato; | |
@include mq-hoge { | |
background-color:red; | |
} | |
} | |
.hoge__elm { | |
background-color:limegreen; | |
@include mq-hoge { | |
background-color:tomato; | |
} | |
} |
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
.hoge { | |
background-color: tomato; | |
} | |
@media (max-width: 100px) { | |
.hoge { | |
background-color: red; | |
} | |
} | |
.hoge__elm { | |
background-color: limegreen; | |
} | |
@media (max-width: 100px) { | |
.hoge__elm { | |
background-color: tomato; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment