Last active
August 29, 2015 14:22
-
-
Save lozandier/f539356dfdb064514e07 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
| .foo Testing |
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.2.4) | |
| // ---- | |
| .foo { | |
| font-family: sans-serif; | |
| --style1: red; | |
| // Works as expected... | |
| color: var(--dragon); | |
| // Nope as far as custom properties as expected because of the existing shorthand syntax the tokenizer/parser allows | |
| --style2: { | |
| color: pink; | |
| } | |
| //@apply(--style2) apply doesn' work… | |
| // But | |
| } |
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
| .foo { | |
| font-family: sans-serif; | |
| --style1: red; | |
| color: var(--dragon); | |
| --style2-color: pink; } |
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
| <div class='foo'>Testing</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment