Tailwind v4 features I'm excited about
CSS-First Configuration /* Before in v3 (tailwind.config.js) */ module.exports = { theme: { fontFamily: { display: ['Satoshi', 'sans-serif'], }, extend: { colors: { 'custom-blue': '#1234567' } } } } /* N...

Search for a command to run...
Articles tagged with #tailwind-css
CSS-First Configuration /* Before in v3 (tailwind.config.js) */ module.exports = { theme: { fontFamily: { display: ['Satoshi', 'sans-serif'], }, extend: { colors: { 'custom-blue': '#1234567' } } } } /* N...

Tailwind got me in the end I'm officially a Tailwind CSS convert. I've been using it for two months at work, and I'm loving it. 馃榿 I think it takes time to get around to it, but if your design system in Figma is using Tailwind, it'll make your life s...

Seen this as a tailwind coder? <button className={cn("px-4 py-2 rounded", { "bg-blue-500 text-white": isPrimary, "bg-gray-200 text-gray-800": !isPrimary, })} > Click me </button> Have you ever wondered why everyone is using the cn func...
