Native CSS Nesting
Just discovered that CSS nesting is now native in most browsers. No need for preprocessors like SCSS for simple projects!
.card {
background: white;
&.dark {
background: black;
}
}
This is a huge quality of life improvement for vanilla CSS.