From 379d61238833a22e34881b017cea6c2ccefcdb21 Mon Sep 17 00:00:00 2001 From: Zac Gaetano Date: Sat, 4 Apr 2026 23:59:55 -0400 Subject: [PATCH] Fix login: show link instead of popup, add code paste UI --- frontend/src/App.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/App.css b/frontend/src/App.css index 4bd1b0c..808fc32 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -758,3 +758,11 @@ body { border-radius: 6px; font-size: 0.9rem; font-family: monospace; } .auth-code-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 2px rgba(37,99,235,0.15); } + +/* ====== Header Auth Pending ====== */ +.header-auth-pending { display: flex; align-items: center; gap: 0.5rem; } +.header-auth-link { + color: #93c5fd; font-size: 0.82rem; font-weight: 500; + text-decoration: underline; white-space: nowrap; +} +.header-auth-link:hover { color: #bfdbfe; }