23 lines
451 B
CSS
23 lines
451 B
CSS
/* HeroUI v3 样式导入 */
|
|
/* 文档: https://v3.heroui.com/docs/quick-start */
|
|
|
|
/*
|
|
* 重要: Tailwind CSS v4 使用 @tailwind 指令
|
|
* HeroUI v3 样式需要在 Tailwind 之后导入
|
|
*/
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import "@heroui/styles";
|
|
|
|
/*
|
|
* AgentChat 页面的自定义样式
|
|
* 这些样式仅在使用 HeroUI 组件的页面生效
|
|
*/
|
|
|
|
/* 确保深色模式正常工作 */
|
|
.dark {
|
|
color-scheme: dark;
|
|
}
|