Skip to content

Instantly share code, notes, and snippets.

@xzyfer
Created December 11, 2014 09:22
Show Gist options
  • Select an option

  • Save xzyfer/9788dfaf2fba2a7428bd to your computer and use it in GitHub Desktop.

Select an option

Save xzyfer/9788dfaf2fba2a7428bd to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.0.2)
// ----
// -----
// Setup
// -----
$foo: null;
@mixin bar() {
bar: $foo;
}
%baz { baz: $foo; }
// ------
// Output
// ------
foo {
baz: $foo;
}
bar {
@include bar;
}
// This results in an error in ruby sass because
// %baz produces no output
// `"baz" failed to @extend "%baz".`
baz {
@extend %baz;
}
baz {
}
foo {
}
bar {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment