feat: add RTE Table

This commit is contained in:
Arvid Norlin
2024-08-05 15:56:26 +02:00
parent a5dbd38654
commit 4005701c79
3 changed files with 81 additions and 13 deletions

View File

@@ -0,0 +1,26 @@
.table {
border-radius: var(--Corner-radius-Medium);
border-collapse: collapse;
overflow: hidden;
}
.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);
}