Skip to content

Instantly share code, notes, and snippets.

@kavanagh
Created August 26, 2014 10:25
Show Gist options
  • Save kavanagh/0f3065295f934ee3f2e4 to your computer and use it in GitHub Desktop.
Save kavanagh/0f3065295f934ee3f2e4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<button class="foo">Foo</button>
// ----
// Sass (v3.3.14)
// Compass (v1.0.0)
// ----
$expression: true;
@if ($expression) {
$bar: green !global;
.foo{
background-color:red;
}
}
.bar{
background-color: $bar;
}
.foo {
background-color: red;
}
.bar {
background-color: green;
}
<button class="foo">Foo</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment