Skip to content

Instantly share code, notes, and snippets.

@geckotang
Created February 10, 2016 10:43
Show Gist options
  • Save geckotang/3d437225f65d4c88a1b4 to your computer and use it in GitHub Desktop.
Save geckotang/3d437225f65d4c88a1b4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
.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