tailwindcss 与各种UI库 按钮样式冲突解决方案

1,244 阅读1分钟
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
  button,
  [type='button'],
  [type='reset'],
  [type='submit'] {
    background-color: var(--n-color);
    //你用的UI库的 color变量
  }
}