Created
December 11, 2014 09:22
-
-
Save xzyfer/9788dfaf2fba2a7428bd to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // 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; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| baz { | |
| } | |
| foo { | |
| } | |
| bar { | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment