Skip to content

Instantly share code, notes, and snippets.

@fuhlig
Last active September 29, 2019 16:50
Show Gist options
  • Save fuhlig/e11919c56096b43d10f0866ff2343dfc to your computer and use it in GitHub Desktop.
Save fuhlig/e11919c56096b43d10f0866ff2343dfc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.5.4)
// ----
// Sass variables are case-sensitive
$avenger: 'Spiderman';
$AVENGER: 'Hulk';
.peter {
hero: $avenger;
}
.bruce {
hero: $AVENGER;
}
.peter {
hero: "Spiderman";
}
.bruce {
hero: "Hulk";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment