/* 更改表头颜色 */
.ant-table-thead > tr > th {
color: #749dee !important;
background: rgb(153, 211, 221) !important;
font-size: 19px;
}
.ant-table-fixed .ant-table-row-hover,
.ant-table-row-hover > td {
background-color: transparent !important;
}
/* 更改表格颜色 */
.ant-table-tbody > tr > td {
background: rgb(140, 197, 255);
color: #0a0a0a;
text-align: center;
border-bottom: rgb(198, 226, 255) 1px solid;
font-size: 15px;
}
备注:我之前只加了上面那个 不管用 一直没变色 加了下面的 就变了
page中引入:
import './styles.css';
参考文章:https://blog.csdn.net/weixin_61079989/article/details/125483837