From 0329fa48bf9287370279553880b5322d55f02821 Mon Sep 17 00:00:00 2001 From: Nicolas Varrot Date: Fri, 13 Feb 2026 17:55:19 +0000 Subject: [PATCH] fix: replace ugly focus ring with subtle border color change on textarea --- src/components/ChatInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ChatInput.tsx b/src/components/ChatInput.tsx index c06215e..68d369d 100644 --- a/src/components/ChatInput.tsx +++ b/src/components/ChatInput.tsx @@ -315,7 +315,7 @@ export function ChatInput({ onSend, onAbort, isGenerating, disabled, sessionKey aria-label={t('chat.inputLabel')} disabled={disabled} rows={1} - className="flex-1 bg-transparent resize-none rounded-2xl border border-pc-border bg-pc-input/35 px-4 py-3 text-sm text-pc-text placeholder:text-pc-text-muted outline-none focus:ring-2 focus:ring-[var(--pc-accent-dim)] transition-all max-h-[200px]" + className="flex-1 bg-transparent resize-none rounded-2xl border border-pc-border bg-pc-input/35 px-4 py-3 text-sm text-pc-text placeholder:text-pc-text-muted outline-none focus:border-[var(--pc-accent-dim)] transition-all max-h-[200px]" /> {isGenerating ? (