From edf08c10ccff75cdcfcd2dee07780b1df8e6af53 Mon Sep 17 00:00:00 2001 From: cyph3rasi Date: Wed, 15 Jul 2026 16:47:29 -0700 Subject: [PATCH] Remove the redundant outer focus ring from form inputs Hop-State: A_06FPGBD56DB1C1SAHK5N8Y8 Hop-Proposal: R_06FPGBBPZTYB7AAAH7CSHCG Hop-Task: T_06FPGB78HBQD0468X0ZM4Y8 Hop-Attempt: AT_06FPGB78H9MT9SSY8S6WE40 --- src/App.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.css b/src/App.css index 6e2022f..06fa3d4 100644 --- a/src/App.css +++ b/src/App.css @@ -5,7 +5,8 @@ html, body, #root { width: 100%; min-width: 720px; height: 100%; min-height: 560px; margin: 0; overflow: hidden; } button, input { font: inherit; } button { color: inherit; } -button:focus-visible, input:focus-visible { outline: 2px solid #fff; outline-offset: 3px; } +button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; } +input:focus-visible { outline: 0; } .onboarding-shell { width: 100%; height: 100%; display: grid; grid-template-columns: minmax(300px, 45%) minmax(420px, 55%); background: #0b0c0c; } .signal-panel { position: relative; min-width: 0; overflow: hidden; border-right: 1px solid rgba(255,255,255,.1); }