Skip to content

Instantly share code, notes, and snippets.

@corradomatt
Created June 11, 2015 15:43
Show Gist options
  • Save corradomatt/93fe0b2fbd437e49166b to your computer and use it in GitHub Desktop.
Save corradomatt/93fe0b2fbd437e49166b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
%placeholder {
display: block;
}
.another-test {
background: red;
}
.test {
color: black;
background: white;
}
/**
* even though this is at the bottom of the SCSS file,
* the extend part gets rendered to the top of the compiled file
*/
.useit {
@extend %placeholder;
}
.useit {
display: block;
}
.another-test {
background: red;
}
.test {
color: black;
background: white;
}
/**
* even though this is at the bottom of the SCSS file,
* the extend part gets rendered to the top of the compiled file
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment