Skip to content

Instantly share code, notes, and snippets.

@alice-liu
Created January 7, 2014 19:09
Show Gist options
  • Save alice-liu/8304929 to your computer and use it in GitHub Desktop.
Save alice-liu/8304929 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
// non-default var defined after
$foo: blue !default;
$foo: red;
.bar {
color: $foo;
}
// default var defined after
$foo2: blue !default;
$foo2: red !default;
.bar2 {
color: $foo2;
}
.bar {
color: red;
}
.bar2 {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment