Files
web/components/TempDesignSystem/Table/table.module.css
2024-08-16 11:14:15 +02:00

28 lines
504 B
CSS

.table {
border-radius: var(--Corner-radius-Medium);
border-collapse: collapse;
overflow: hidden;
width: 100%;
}
.thead {
background-color: var(--Base-Background-Secondary-Normal, #f7e1d5);
}
.tbody {
background-color: var(--Base-Surface-Primary-light-Normal, #fff);
}
.tr:not(:last-of-type) {
border-bottom: 1px solid var(--Primary-Light-On-Surface-Divider, #f0c1b6);
}
.th {
padding: var(--Spacing-x2) var(--Spacing-x3);
text-align: left;
}
.td {
padding: var(--Spacing-x3);
}