/* IMPORTANT: Put utilities before components */ @tailwind base; @tailwind utilities; @tailwind components; /* Note: you could also just add a custom CSS file here. */ .btn-blue { @apply bg-blue-500 text-white font-bold py-2 px-4 rounded; } .btn-blue:hover { @apply bg-blue-700; }