Files
web/components/Loyalty/Blocks/DynamicContent/OverviewTable/LargeTable/largeTable.module.css
2024-06-05 13:42:25 +02:00

32 lines
600 B
CSS

.table {
border: 1px solid var(--Base-Border-Subtle);
border-collapse: collapse;
color: var(--BURGUNDY, #4d001b);
}
.thead {
background-color: var(--Base-Surface-Secondary-Normal);
position: sticky;
top: 0;
}
.th,
.td {
border: 1px solid var(--Base-Border-Subtle);
padding: var(--Spacing-x3) var(--Spacing-x2);
}
.th {
font-size: var(--typography-Caption-Regular-fontSize);
font-weight: 400;
}
.td {
font-size: var(--typography-Footnote-Regular-fontSize);
text-align: center;
}
.tr:nth-child(odd) {
background-color: var(--Base-Background-Primary-Elevated, #faf6f2);
}