Hacker News new | ask | show | jobs
by yewenjie 1770 days ago
There is also WindiCSS - a superset of Tailwind with some very cool features.

https://windicss.org/

2 comments

The example on that site of the gradient button with "Preview" text is broken. The text isn't centered because the container is set to display: flex but no flex-grow set to expand the content box to fill the parent. It has text-center set, but because the box is collapsing that's not working as expected. Really, it needs Tailwind's justify-items-center applied to it.

I'd worry about using a framework whose primary example is wrong.

+1. Been using this in place of Tailwind. I like that it's got 0deps and only takes up 2MB of disk space.