Not sure if this is possible or not, but it distorted me for a while.
Is it possible to select several direct descendants within a nested block in SASS?
// This works div { > .one { /* ... */ } } // This doesn't work div { > .one, > .two { /* ... */ } }
source share