📜  编辑队列目前已满 - 请在几分钟后重试! - CSS 代码示例

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

代码示例1
/* 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;
}