From e27bdc9678723f67a3470b3db488e0e38d02995d Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 10 May 2026 09:52:54 +0200 Subject: [PATCH] fix: freeze table header in Chrome by using overflow: auto on container Co-Authored-By: Claude Sonnet 4.6 --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 4ef2f3d..63b3032 100644 --- a/templates/index.html +++ b/templates/index.html @@ -13,7 +13,7 @@ background: #222831; color: #DFD0B8; } - .table-container { width: 100%; overflow-x: auto; max-height: 70vh; } + .table-container { width: 100%; overflow: auto; max-height: 70vh; } table { border-collapse: separate; border-spacing: 0; width: 100%; min-width: 700px; margin-bottom: 1em; background: #393E46; color: #DFD0B8; border-radius: 18px; overflow: hidden; } th, td { border: 1px solid #393E46; padding: 0.5em; text-align: center; border-radius: 12px; } th { background: #393E46; color: #DFD0B8; position: sticky; top: 0; z-index: 2; }