From fb2a693dbb89c2690e8e17c66e1bcacfe582e23b Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 19 Mar 2026 02:05:34 +0800 Subject: [PATCH] fix: reduce number and arrow column widths on mobile for tighter table layout Co-Authored-By: Claude --- website/static/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/static/style.css b/website/static/style.css index 6d687d2..5494734 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -540,6 +540,8 @@ th[data-sort].sort-asc::after { .table thead th:last-child, .table tbody td:last-child { padding-right: 0.5rem; } + .col-num { width: 1.75rem; } + .col-arrow { width: 1.75rem; } .col-cat { display: none; } .col-name { white-space: normal; } .footer { padding: 1.25rem; justify-content: center; flex-wrap: wrap; }