0.0.1 • Published 5 years ago

pea-antd v0.0.1

Weekly downloads
4
License
-
Repository
-
Last release
5 years ago

pea-antd

Installation

npm i pea-antd

Usage

import antd from 'pea-antd'

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

Customize Ant Design Theme

to modify the default Ant Design theme:

import antd from 'pea-antd'
import less from 'pea-less'

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

License

MIT License