From 0b081100d276b33e229817619a4f6bd89879e59d Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 24 Mar 2026 13:35:06 +0800 Subject: [PATCH] fix(css): remove explicit flex layout from .hero-topbar mobile override The flex properties (align-items, flex-direction, flex-wrap, justify-content) were overriding the default layout unnecessarily on mobile. Co-Authored-By: Claude --- website/static/style.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/website/static/style.css b/website/static/style.css index 496f748..ee24ce9 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -1061,10 +1061,6 @@ th[data-sort].sort-asc::after { } .hero-topbar { - align-items: center; - flex-direction: row; - flex-wrap: nowrap; - justify-content: space-between; gap: 0.75rem; }