From cf9cde8e8f3a3b19e6ec3c0bd8f484d39c0d4041 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 24 Mar 2026 13:00:40 +0800 Subject: [PATCH] fix(css): use display:none for expand-row first/last cells on mobile Replaces the width/padding/overflow hack with a clean display:none. The previous approach collapsed the cells to zero size but kept them in the layout flow; display:none removes them entirely. Co-Authored-By: Claude --- website/static/style.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/website/static/style.css b/website/static/style.css index d388b74..1b32cc4 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -1134,9 +1134,7 @@ th[data-sort].sort-asc::after { .expand-row td:first-child, .expand-row td:last-child { - width: 0; - padding: 0; - overflow: hidden; + display: none; } .col-name {