|
|
|
|
|
by dt2m
1389 days ago
|
|
I would argue that any HTML + CSS framework stack is inherently flawed once you move beyond the most basic of UI components. I have yet to work on a React + Tailwind codebase in the wild where the margin/padding metrics aren't hardcoded and repeated across tens of different components. We've traded the elegance of well-written SCSS for improved developer ergonomics and faster build times because webpack is so slow at compiling stylesheet changes. If you want to practise proper DRY for spacing, typography, etc. in a React app, you'll just end up nesting tons of components that ultimately result in needless complexity. |
|