Skip to content

Instantly share code, notes, and snippets.

@matthew-andrews
Created February 20, 2014 21:29
Show Gist options
  • Save matthew-andrews/9123594 to your computer and use it in GitHub Desktop.
Save matthew-andrews/9123594 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.4)
// Compass (v1.0.0.alpha.18)
// ----
.foo {
background-color: pink;
&--bar {
background-color: white;
}
}
%fizz {
background-color: pink;
&--buzz {
background-color: white;
}
}
.the-fizz {
@extend %fizz;
}
.foo {
background-color: pink;
}
.foo--bar {
background-color: white;
}
.the-fizz {
background-color: pink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment