chore: update Tailwind CSS imports and adjust source paths

- Replaced the import of `theme.css` with `tailwindcss` for improved styling management.
- Adjusted the source path to include components specifically, enhancing clarity in file structure.
- Retained the import of `tw-animate-css` for animation support.
This commit is contained in:
MyPrototypeWhat 2025-10-31 16:25:11 +08:00
parent 6042ee8ca8
commit 2c07ea0dd8

View File

@ -1,10 +1,12 @@
@import '../../../../../packages/ui/src/styles/theme.css';
@import 'tailwindcss';
@import 'tw-animate-css';
@import '../../../../../packages/ui/src/styles/theme.css';
/* TODO heroui 迁移完成后即可删除 */
/* heroui */
/* @plugin '../../hero.ts'; */
/* @source '../../../../../packages/ui/src*.{js,ts,jsx,tsx}'; */
@source '../../../../../packages/ui/src/components/**/*.{js,ts,jsx,tsx}';
@custom-variant dark (&:is(.dark *));