42 lines
954 B
SCSS
42 lines
954 B
SCSS
|
|
.arco-table {
|
||
|
|
@mixin table-cell-text {
|
||
|
|
color: var(--Text-1, #211f24);
|
||
|
|
font-family: 'Alibaba PuHuiTi';
|
||
|
|
font-size: 14px;
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 22px;
|
||
|
|
}
|
||
|
|
.arco-table-container {
|
||
|
|
border: none !important;
|
||
|
|
.arco-table-element {
|
||
|
|
thead {
|
||
|
|
.arco-table-tr {
|
||
|
|
.arco-table-th {
|
||
|
|
border-bottom: 1px solid var(--Border-1, #d7d7d9);
|
||
|
|
background: var(--BG-100, #f7f8fa);
|
||
|
|
.arco-table-cell {
|
||
|
|
padding: 13px 16px;
|
||
|
|
.arco-table-th-title {
|
||
|
|
@include table-cell-text;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
tbody {
|
||
|
|
.arco-table-tr {
|
||
|
|
.arco-table-td {
|
||
|
|
.arco-table-cell {
|
||
|
|
padding: 13px 16px;
|
||
|
|
.arco-table-cell-content {
|
||
|
|
@include table-cell-text;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|