📜  tailwind @apply - CSS 代码示例

📅  最后修改于: 2022-03-11 14:48:00.488000             🧑  作者: Mango

代码示例1
@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;