From ad8cad29d33085dfb1308ce6a2722fa0381b6c4e Mon Sep 17 00:00:00 2001 From: Gigi Date: Sat, 18 Oct 2025 09:22:49 +0200 Subject: [PATCH] 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 --- src/styles/components/login.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/components/login.css b/src/styles/components/login.css index d14b7ac7..a38df09c 100644 --- a/src/styles/components/login.css +++ b/src/styles/components/login.css @@ -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 {