mk-component
Version:
- 1、npm install mk-component --save
43 lines (39 loc) • 833 B
text/less
.mk-table {
height: 100%;
overflow: hidden;
table{
border-radius: 0px;
}
.ant-table-thead > tr > th {
background-color: #3EABE8;
color: #fff;
font-size: 12px;
font-weight: normal;
text-align: center;
padding: 6px 8px;
}
.ant-table-tbody{
background: #fff;
td {
padding: 6px 8px;
border-top: 0;
border-bottom: 0;
border-left: 0;
border-color: #e7e6e6;
}
tr:nth-child(odd) {
background: #fff;
}
tr:nth-child(even) {
background: #f8f8f8;
}
tr:hover {
background: #f3f9f0;
}
tr:last-child{
td{
border-bottom: 1px solid #e9e9e9;
}
}
}
}