From 6877df7d79ff7d83dff67275ddd9fe9605526082 Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Mon, 29 Dec 2025 15:10:52 +0000 Subject: [PATCH] Align search controls width with other boxes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove max-width constraint so controls match hero and status widths 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.html b/index.html index 21b9ce4..9ff7680 100644 --- a/index.html +++ b/index.html @@ -336,12 +336,10 @@ color: var(--gb-darkest); } .controls { - margin: calc(var(--spacing-unit) * 3) auto calc(var(--spacing-unit) * 2) auto; + margin: calc(var(--spacing-unit) * 3) 0 calc(var(--spacing-unit) * 2) 0; display: flex; gap: calc(var(--spacing-unit) * 1.5); align-items: stretch; - justify-content: center; - max-width: 720px; } .controls.locked { opacity: 0.35;