Skip to content

Instantly share code, notes, and snippets.

@alice-liu
Forked from anonymous/SassMeister-input.scss
Created December 2, 2013 22:46
Show Gist options
  • Save alice-liu/7760476 to your computer and use it in GitHub Desktop.
Save alice-liu/7760476 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@mixin bah {
&%foo {
color: red;
}
}
%blah {
@include bah;
color: blue;
}
%baz {
@include bah;
color: green;
}
.bar {
@extend %blah;
@extend %foo;
}
.baz {
@extend %baz;
@extend %foo;
}
.bar {
color: blue;
}
.bar {
color: red;
}
.baz {
color: green;
}
.baz {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment