From 856f43602249d588e24847dfd8d2b269f3acb800 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 24 Mar 2026 13:03:01 +0800 Subject: [PATCH] fix(css): consolidate table-wrap overflow-x into single breakpoint Moves overflow-x: clip from the 680px breakpoint into the 960px breakpoint, removing the duplicate rule. The value was applied twice across two consecutive breakpoints with no override in between. Co-Authored-By: Claude --- website/static/style.css | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/website/static/style.css b/website/static/style.css index 1b32cc4..ecafea2 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -1057,7 +1057,7 @@ th[data-sort].sort-asc::after { } .table-wrap { - overflow-x: auto; + overflow-x: clip; } } @@ -1108,10 +1108,6 @@ th[data-sort].sort-asc::after { border-radius: 1.25rem; } - .table-wrap { - overflow-x: clip; - } - .table thead th, .table tbody td { padding-inline: 0.55rem;