Having multiple two-class selectors for a single declaration block, is it possible to simplify the following (i.e. not having to repeat the body tag):
body
In this case we can use @each directive:
@each
$pages: shop, contact, about, faq; body { @each $page in $pages { &.#{$page} { background-color:#FFF; } } }
sassmeister.com