CSS nesting
code:before.css
.navbar .stream-btn {
color: purple;
}
.navbar input {
color: gold;
}
.navbar::before {
content: "hello world";
}
を
code:after.css
.navbar {
.stream-btn {
color: purple;
}
input {
color: gold;
}
&::before {
content: "hello world";
}
}
元々SCSSにあった文法を逆輸入した形だが、一部使えない文法もある