@hcatlin
Nothing here yet.
Nothing here yet.
No blogs yet.
Oh, simple. SCSS is CSS compatible. So, if you are at a company, you can add Sass to your build-chain and coworkers who don't want to use it... don't have to! Also, all of your old code works (as long as it was valid!) Adoption was slower when you had to 'learn a new syntax'. SCSS made Sass just... CSS++ I use SCSS syntax now (it's the default), but I do really miss the +myMixin syntax.
Okay, well, I immediately know one. @extends in the browser. Right now, we have to do all sorts of gross-dark-magic things to make @extends work in Sass. It's complex and it mostly-works... but it's complex because we don't know the DOM. If we knew the HTML, we could be super efficient about it. Something with the functionality of @extends would be trivial in the browser, and then we wouldn't have to do it. We only built it because there were so many good use-cases that it overrode our concerns about complexity and maintainability. Another thing I really want is a good CSS-JS bridge. Oh, and I'd love it if nesting was supported. We could still compress our output, but we wouldn't have to repeat selectors over and over in our output!