cherry-studio/packages/ui/stories/tailwind.css
MyPrototypeWhat 292f7f7b75 chore: remove unused CSS files and update Storybook configurations
- Deleted the todocss.css file as it was no longer needed.
- Updated Storybook main.ts to include path aliasing for better module resolution.
- Removed deprecated stories and components, streamlining the codebase.
- Added new stories for CodeEditor, Ellipsis, ExpandableText, and other components to enhance documentation and showcase functionality.
2025-11-03 18:31:48 +08:00

13 lines
317 B
CSS

/* Storybook 专用的 Tailwind CSS 配置 */
@import 'tailwindcss';
@import '../src/styles/theme.css';
/* 扫描组件文件 */
@source '../src/components/**/*.{js,ts,jsx,tsx}';
/* 扫描 stories 文件 */
@source './components/**/*.{js,ts,jsx,tsx}';
/* Dark mode support */
@custom-variant dark (&:is(.dark *));