fix: remove sticky thead — overlapped table toolbar (#4)

The thead had position: sticky; top: var(--topbar-height), pinning it
to 64px from the viewport. Inside the new .table-card with a toolbar
above, this pulled the header up out of its natural flow and overlapped
the toolbar and first data row. Let thead flow normally — design
doesn't require sticky behavior.
This commit is contained in:
Samuel Enocsson
2026-05-21 15:27:08 +02:00
parent 88df98f269
commit 9feb5c2c43
-6
View File
@@ -318,12 +318,6 @@ table {
font-size: 14px; font-size: 14px;
} }
thead {
position: sticky;
top: var(--topbar-height);
z-index: 10;
}
th { th {
padding: 0 16px; padding: 0 16px;
height: 48px; height: 48px;