Skip to content

Instantly share code, notes, and snippets.

@hellatan
Created April 19, 2014 20:31
Show Gist options
  • Save hellatan/11096653 to your computer and use it in GitHub Desktop.
Save hellatan/11096653 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v0.7.0)
// ----
@mixin media-query() {
@media only screen {
@content;
}
}
.class-1 {
display: block;
@include media-query() {
display: none;
}
}
.class-2 {
@extend .class-1;
}
.class-1, .class-2 {
display: block; }
@media only screen {
.class-1 {
display: none; } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment