cherry-studio/packages/ui/stories/tailwind.css
MyPrototypeWhat 79c9ed963f feat: update UI package with Storybook integration and Tailwind CSS v4 configuration
- Added Storybook scripts for development and building the UI components.
- Updated package.json to include new dependencies for Storybook and styled-components.
- Revised README to reflect changes in Tailwind CSS configuration, transitioning to v4 and removing the tailwind.config.js file.
- Enhanced the tsdown configuration to mark additional peer dependencies as external.
- Removed outdated Tailwind CSS configuration file to streamline the setup.
2025-09-15 19:26:23 +08:00

14 lines
372 B
CSS

/* Storybook 专用的 Tailwind CSS 配置 */
@import 'tailwindcss';
/* 扫描组件文件 */
@source '../src/components/**/*.{js,ts,jsx,tsx}';
/* 扫描 stories 文件 */
@source './components/**/*.{js,ts,jsx,tsx}';
/* HeroUI 组件样式 */
@plugin './hero.ts';
@source '../node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}';
@custom-variant dark (&:is(.dark *));