Skip to content

Instantly share code, notes, and snippets.

@lemonmade
Last active October 30, 2015 00:12
Show Gist options
  • Save lemonmade/770fe9576db1f46521fb to your computer and use it in GitHub Desktop.
Save lemonmade/770fe9576db1f46521fb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
$foo: 10;
.foo {
$foo: 20;
border-width: $foo; // 20
}
.bar {
border-width: $foo; // 10
}
.baz {
$baz: 30;
border-width: $baz; // 30
}
.qux {
border-width: $baz; // error
}
Undefined variable: "$baz".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment