Skip to content

Instantly share code, notes, and snippets.

@matthew-andrews
Created February 11, 2014 16:39
Show Gist options
  • Save matthew-andrews/8938592 to your computer and use it in GitHub Desktop.
Save matthew-andrews/8938592 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.14)
// Compass (v0.12.2)
// ----
%test-1 {
background-color: blue;
}
%test-2 {
background-color: green;
}
%test-1 + %test-2 {
background-color: red;
}
%test-1 > %test-2 {
font-size: 10px;
}
.actual-1 {
@extend %test-1;
}
.actual-2 {
@extend %test-2;
}
.actual-1 {
background-color: blue;
}
.actual-2 {
background-color: green;
}
.actual-1 + .actual-2 {
background-color: red;
}
.actual-1 > .actual-2 {
font-size: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment