Skip to content

Instantly share code, notes, and snippets.

@elisechant
Created November 19, 2013 06:32
Show Gist options
  • Save elisechant/7541170 to your computer and use it in GitHub Desktop.
Save elisechant/7541170 to your computer and use it in GitHub Desktop.
SASS ternary for debugging by layout painting
$DEBUG_LAYOUT: true;
header {
// if true: paint the header background pink
// if false: null value removes the declaration from the compile
//
background: if($DEBUG_LAYOUT, pink, null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment