Skip to content

Instantly share code, notes, and snippets.

@mturnwall
Created April 24, 2014 16:58
Show Gist options
  • Save mturnwall/11261727 to your computer and use it in GitHub Desktop.
Save mturnwall/11261727 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.5)
// Compass (v1.0.0.alpha.18)
// ----
.firstClass {
border: 1px solid red;
}
.secondClass {
@extend .firstClass;
padding: 20px;
}
aside {
.firstClass {
padding: 10px;
}
}
.firstClass, .secondClass {
border: 1px solid red;
}
.secondClass {
padding: 20px;
}
aside .firstClass, aside .secondClass {
padding: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment