Skip to content

Instantly share code, notes, and snippets.

@rowanmanning
Created January 17, 2013 13:24
Show Gist options
  • Save rowanmanning/4555910 to your computer and use it in GitHub Desktop.
Save rowanmanning/4555910 to your computer and use it in GitHub Desktop.
Sass defaults example
$foo: 'bar' !default;
// ...do stuff
$foo: 'baz';
@import 'library';
selector {
property: $foo; // baz
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment