DEV Community

Discussion on: What should production CSS look like? Share your layout-to-web workflow

 
equinusocio profile image
Mattia Astorino • Edited

Yes. But this approach and mindset can be applied even on small website. Every html elememt and composite block is a "reusable component" by default.

Thread Thread
 
worc profile image
worc

styled-components is a good working example in the react ecosystem. @jen chan, in general, you don't need to use sass if you're building CSS blocks in javascript. javascript gives you access to variables and functions and extensibility natively. it's probably not the best looking syntax around, but i've seen it help a ton in keeping CSS definitions from leaking across components and keeping the scope of a styling problem/solution very narrow.