Skip to content

Instantly share code, notes, and snippets.

@tmlangley
Created August 28, 2015 21:04
Show Gist options
  • Save tmlangley/c0f57e6898ebe7bf39e5 to your computer and use it in GitHub Desktop.
Save tmlangley/c0f57e6898ebe7bf39e5 to your computer and use it in GitHub Desktop.
SASS variable selectors
$hover: '&:hover, &:active, &:focus';
$headings: 'h1, h2, h3, h4, h5, h6';
$headers: $headings;
//
// Usage
//
#{$headings} {
color: #222;
}
#{$hover} {
opacity: 0.8;
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment