Answers for "how to use apply tailwind"

CSS
0

tailwind @apply

@tailwind base;

@tailwind components;

.btn-blue {
  @apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}
.btn-blue:hover {
  @apply bg-blue-700;
}

@tailwind utilities;
Posted by: Guest on June-18-2020

Code answers related to "how to use apply tailwind"

Browse Popular Code Answers by Language