Skip to content

Instantly share code, notes, and snippets.

@bashmish
Created September 4, 2015 17:13
Show Gist options
  • Save bashmish/f8d7dd4aad883264c03d to your computer and use it in GitHub Desktop.
Save bashmish/f8d7dd4aad883264c03d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.module {
padding: 10px;
&--modfier {
color: red;
}
h3 {
font-size: 30px;
color: red;
}
}
.news {
& {
@extend .module;
};
h3 {
color: black;
}
}
.module, .news {
padding: 10px;
}
.module--modfier {
color: red;
}
.module h3, .news h3 {
font-size: 30px;
color: red;
}
.news h3 {
color: black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment