Details

Do not use parent selector references (&) when they would otherwise be unnecessary.

Bad

.foo {
& > .bar {
...
}
}

Good

.foo {
> .bar {
}
}