I honestly have never seen the value in pre-processors when writing CSS. I think they abstract a lot of low-level understanding of your UI and make your stylesheets overly complex. They definitely keep things sane when doing CSS at very large scale (for example dealing with color palettes, fonts, etc) but are not that useful when you're writing different components with different rendering needs. Nowadays I just do f…
.selector .child_one,
.selector .child_two {
color: #000;
}
instead of, .selector
.child_one,
.child_two
color #000
I no longer type a semi colon when developing a web site thanks to preprocessor and transpilers.