mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-24 02:20:10 +08:00
- 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.
13 lines
317 B
CSS
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 *));
|