As a newbie in SCSS I am wondering how to use its nesting for the element + element selector of CSS. Normally, in CSS, I would write something like:
.te
Upate: In this case all you need to do is to nest rules like this:
.test { color: red; + label { color: blue; } }
However, you can also use the & selector to achieve the same effect like this:
&
.test { color: red; & +label { color: blue; } }