Add table extension

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-03-24 13:07:38 +04:00
parent 3afdb0b5b8
commit 70ebdd771d
5 changed files with 38 additions and 1 deletions

View File

@@ -66,4 +66,22 @@
content: attr(data-placeholder);
@apply text-txt-tertiary;
}
table {
@apply border border-border-mid border-collapse;
tbody {
@apply border border-border-mid border-collapse;
}
tr {
@apply border border-border-mid border-collapse;
}
th {
@apply px-2 py-1.5 border border-border-mid border-collapse bg-subtle text-left font-semibold;
p { @apply m-0; }
}
td {
@apply px-2 py-1.5 border border-border-mid border-collapse bg-level-0 text-left;
p { @apply m-0; }
}
}
}