From 66242cf0c93e974841673d12ab78dba6dfef4406 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 24 Mar 2026 13:12:00 +0800 Subject: [PATCH] refactor(css): consolidate .expand-commit into shared mobile media query Was in a standalone @media (max-width: 960px) block; now lives inside the existing mobile breakpoint block alongside sibling expand-row rules. No visual change. Co-Authored-By: Claude --- website/static/style.css | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/website/static/style.css b/website/static/style.css index e2faf4a..28547f4 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -793,12 +793,6 @@ th[data-sort].sort-asc::after { display: none; } -@media (max-width: 960px) { - .expand-commit { - display: inline; - } -} - .tag { position: relative; border: 1px solid transparent; @@ -1047,6 +1041,10 @@ th[data-sort].sort-asc::after { display: none; } + .expand-commit { + display: inline; + } + .tag-group { display: none; }