蚂蚁设计主题编辑器
Boilerplate将组件渲染到,因此您可以轻松地编辑主题
前提条件
安装所需的系统依赖项
克隆存储库
git clone https://github.com/minheq/antd-theme-editor.git
安装项目的程序包依赖项
yarn
...您就准备好了!
用法
运行命令
yarn storybook
访问localhost:6006以查看故事书
定制主题
编辑antd默认变量
可以使用src/antd-theme-override.less来编辑antd默认变量
编辑CSS Antd类
您还可以编辑css文件src/style-override.css以覆盖/编辑antd类的样式
出口
完成变量和样式的编辑后,通过此命令导出
yarn export
导出的文件将在dist目录中找到,并在您的项目中复制和使用
更新故事
故事已基于antd存储库创建。 您还可以通过git子模块导入antd组件并运行脚本来创建或更新故事来更新它们。
git submodule update --init --recursive // Adds antd subm
1