Skip to content

Instantly share code, notes, and snippets.

@MichaelArestad
Created July 22, 2014 00:35
Show Gist options
  • Select an option

  • Save MichaelArestad/bb75d4394334b311d69c to your computer and use it in GitHub Desktop.

Select an option

Save MichaelArestad/bb75d4394334b311d69c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
@mixin test($foo: 0) {
@content;
body {
line-height: $foo;
}
}
@include test {
@if 1 == 1 {
$foo: 1;
}
}
body {
line-height: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment