We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
After suggested Sass nesting, perhaps demonstrate the result. For example:
If you were to Sass this up you’d write it as:
.header{} .site-nav{ li{} a{} }
This would output the following vanilla css, with correct selector specificity:
.header{} .site-nav li{} .site-nav a{}