From 9feb5c2c43d62bbe79b38ab360b13af69c329799 Mon Sep 17 00:00:00 2001 From: Samuel Enocsson Date: Thu, 21 May 2026 15:27:08 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20sticky=20thead=20=E2=80=94=20ov?= =?UTF-8?q?erlapped=20table=20toolbar=20(#4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- public/css/shared.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/public/css/shared.css b/public/css/shared.css index 204cc57..cd3a4b5 100644 --- a/public/css/shared.css +++ b/public/css/shared.css @@ -318,12 +318,6 @@ table { font-size: 14px; } -thead { - position: sticky; - top: var(--topbar-height); - z-index: 10; -} - th { padding: 0 16px; height: 48px;