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...
tigerabrodi.blog3 min read