Skip to content

Instantly share code, notes, and snippets.

@czajkovsky
Created June 16, 2015 09:37
Show Gist options
  • Save czajkovsky/dd09cdf1a82ad15a3be3 to your computer and use it in GitHub Desktop.
Save czajkovsky/dd09cdf1a82ad15a3be3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
%foo {
background: #f00;
&--bar {
background: #00f;
}
&:checked {
color: #0f0;
}
}
.baz {
@extend %foo;
}
.baz {
background: #f00;
}
.baz:checked {
color: #0f0;
}
<div class='box'></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment