表格样式修改

This commit is contained in:
ldj_willow
2022-09-28 11:49:24 +08:00
parent eec1ee9967
commit 2a4bbd96e2

View File

@@ -181,3 +181,25 @@ input[type="number"]::-webkit-outer-spin-button {
padding-top: 0px !important;
}
//表格标题样式
.el-table {
.el-table__header-wrapper,
.el-table__fixed-header-wrapper {
th {
word-break: break-word;
background-color: #f8f8f9;
color: #515a6e;
height: 35px;
font-size: 13px;
}
td{
color: #f8f8f9;
}
}
.el-table__body-wrapper {
.el-button [class*="el-icon-"] + span {
margin-left: 1px;
}
}
}