fix: ensure bunker input stays centered and constrained

- Add width: 100% to bunker-input-container and bunker-input
- Add box-sizing: border-box to properly calculate width with padding
- Prevents bunker dialog from extending beyond centered layout
This commit is contained in:
Gigi
2025-10-18 09:22:49 +02:00
parent 8d4a4a04a3
commit ad8cad29d3

View File

@@ -99,6 +99,8 @@
background: var(--color-bg-elevated);
border: 1px solid var(--color-border);
border-radius: 8px;
width: 100%;
box-sizing: border-box;
}
.bunker-input {
@@ -110,6 +112,8 @@
color: var(--color-text);
font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
transition: all 0.2s ease;
width: 100%;
box-sizing: border-box;
}
.bunker-input:focus {