In CSS there is no way to select a sibling with plus if the sibling is above in the output, a preceding element in the HTML.
For example
<div class="first">
<div class="second">
.second + .first {
//style applied to div.first
}
Is there anyway to do this in SASS/SCSS?