From 5aec6d9a1b9f34f01e52cc5eca9a71ce16a61043 Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Mon, 29 Dec 2025 15:13:33 +0000 Subject: [PATCH] Fix search controls overflow - add min-width:0 to input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.html b/index.html index 9ff7680..19bafc1 100644 --- a/index.html +++ b/index.html @@ -340,6 +340,8 @@ display: flex; gap: calc(var(--spacing-unit) * 1.5); align-items: stretch; + width: 100%; + box-sizing: border-box; } .controls.locked { opacity: 0.35; @@ -411,6 +413,7 @@ /* Text input - Game Boy style */ input[type="text"] { flex: 1; + min-width: 0; background: var(--gb-lightest); color: var(--gb-darkest); border: var(--pixel-border) solid var(--gb-dark);