Fix search controls overflow - add min-width:0 to input

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
b1rdmania
2025-12-29 15:13:33 +00:00
parent 6877df7d79
commit 5aec6d9a1b
+3
View File
@@ -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);