1.0.0 • Published 6 years ago

dahlia-antd v1.0.0

Weekly downloads
8
License
MIT
Repository
github
Last release
6 years ago

dahlia-antd

Installation

yarn add dahlia-antd

Usage

import antd from 'dahlia-antd'

export default {
  plugins: [antd()],
}

Customize Ant Design Theme

to modify the default Ant Design theme:

import antd from 'dahlia-antd'
import less from 'dahlia-less'

export default {
  plugins: [
    less({
      modifyVars: {
        'primary-color': 'black',
        'link-color': '#1DA57A',
        'border-radius-base': '10px',
      },
      javascriptEnabled: true,
    }),
    antd({
      style: true,
    }),
  ],
}

License

MIT License