Last active
September 29, 2019 16:50
-
-
Save fuhlig/e11919c56096b43d10f0866ff2343dfc 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.5.4) | |
| // ---- | |
| // Sass variables are case-sensitive | |
| $avenger: 'Spiderman'; | |
| $AVENGER: 'Hulk'; | |
| .peter { | |
| hero: $avenger; | |
| } | |
| .bruce { | |
| hero: $AVENGER; | |
| } |
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
| .peter { | |
| hero: "Spiderman"; | |
| } | |
| .bruce { | |
| hero: "Hulk"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment