Skip to content

Instantly share code, notes, and snippets.

@OlivierPerceboisGarve
Created August 3, 2015 10:14
Show Gist options
  • Save OlivierPerceboisGarve/3c43869d57050a61ca83 to your computer and use it in GitHub Desktop.
Save OlivierPerceboisGarve/3c43869d57050a61ca83 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin foobar() {
@if & == span {
outline: 1px solid red;
} @else {
outline: 1px solid blue;
}
}
.bar {
@include foobar();
}
span.baz{
@include foobar();
}
.bar {
outline: 1px solid blue;
}
span.baz {
outline: 1px solid blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment