使用module.less方式引入的文件覆盖全局样式或是antd组件默认样式(react)
1.覆盖antd组件默认样式
- 全局覆盖
:global {
.ant-table-thead > tr > th {
text-align: left !important;
}
}
- 局部覆盖
:global {
.issueMain { // 包裹antd组件的上层组件
.ant-table-thead > tr > th {
text-align: left !important;
}
}
}