Skip to content

Instantly share code, notes, and snippets.

@jamiemagique
Last active September 2, 2015 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiemagique/87d14b5bf770e1c08e36 to your computer and use it in GitHub Desktop.
Save jamiemagique/87d14b5bf770e1c08e36 to your computer and use it in GitHub Desktop.
Variable overriding with SASS
// ----
// libsass (v3.2.5)
// ----
$brand-color: purple !default;
$brand-color: orange;
$site-header-bg: $brand-color !default;
.site-header {
background: $site-header-bg;
}
.site-header {
background: orange;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment