Files
hustoj/web/bsadmin/assets/sass/order-list.scss
2024-10-10 12:56:56 +08:00

27 lines
557 B
SCSS

@import "variable"; // variable
.order-list-item {
table {
tbody>tr>td {
padding-top: 8px;
border-top: 1px solid $border;
}
thead>tr>th {
border-bottom: 1px solid $border;
}
}
thead {
background: $primary;
text-align: left;
th {
color: $white;
font-weight: bold;
}
}
tbody {
background: $white;
text-align: left;
td {
color: #444444;
}
}
}