I'm unsure about the merits of nesting. Tends to make for some hard-to-read code.
.a-long-class-name { background: firebrick; &:hover { background: red; } }
& > div, & a, & a { &:hover } etc.
.some-class { > div, a { background: blue; &:hover { background: red; } } }
I'm unsure about the merits of nesting. Tends to make for some hard-to-read code.