Skip to content

Instantly share code, notes, and snippets.

@markusfalk
Created June 17, 2014 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markusfalk/3116020d285be50b8807 to your computer and use it in GitHub Desktop.
Save markusfalk/3116020d285be50b8807 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
.text {
color: red;
}
.test1 {
/* this causes the block to appear */
p {
@extend .text;
}
}
/* no comment, no block */
.test2 {
p {
@extend .text;
}
}
.text, .test1 p, .test2 p {
color: red;
}
.test1 {
/* this causes the block to appear */
}
/* no comment, no block */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment