From 8d998aad7112913e3df0fd5089dbaf2052aba5f4 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 21 May 2026 18:49:00 +0100 Subject: [PATCH] Sticky table headers while scrolling within the table Co-Authored-By: Claude Sonnet 4.6 --- templates/base.html | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/base.html b/templates/base.html index 02bf182..bf73706 100644 --- a/templates/base.html +++ b/templates/base.html @@ -271,6 +271,7 @@ .results-table th, .results-table td { padding: 0.6rem 0.8rem; } .results-table thead tr { border-bottom: 2px solid #e2e8f0; text-align: left; } + .results-table th { position: sticky; top: 0; background: #fff; z-index: 1; } .results-table tbody tr { border-bottom: 1px solid #e2e8f0; } .row-fast { background: #f0fff4; } .row-slow { background: #fff5f5; }