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:
@@ -340,6 +340,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
gap: calc(var(--spacing-unit) * 1.5);
|
gap: calc(var(--spacing-unit) * 1.5);
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
.controls.locked {
|
.controls.locked {
|
||||||
opacity: 0.35;
|
opacity: 0.35;
|
||||||
@@ -411,6 +413,7 @@
|
|||||||
/* Text input - Game Boy style */
|
/* Text input - Game Boy style */
|
||||||
input[type="text"] {
|
input[type="text"] {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
background: var(--gb-lightest);
|
background: var(--gb-lightest);
|
||||||
color: var(--gb-darkest);
|
color: var(--gb-darkest);
|
||||||
border: var(--pixel-border) solid var(--gb-dark);
|
border: var(--pixel-border) solid var(--gb-dark);
|
||||||
|
|||||||
Reference in New Issue
Block a user