From 354c30d64104dba31fddce96f901fb59dd997537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 30 Aug 2026 20:55:07 +0200 Subject: [PATCH] Underline the session title input instead of a full border Drops the boxed border-b-2/rounded treatment for just a bottom border - transparent at rest, muted on hover, primary-colored on focus - which reads as inline editing rather than a form field. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01WzyfRyA7h5rs5SCAahLAWd --- components/sessions/SessionTitleEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/sessions/SessionTitleEditor.tsx b/components/sessions/SessionTitleEditor.tsx index 46baa6e..ff95372 100644 --- a/components/sessions/SessionTitleEditor.tsx +++ b/components/sessions/SessionTitleEditor.tsx @@ -52,7 +52,7 @@ export function SessionTitleEditor({ sessionId, initialName }: { sessionId: numb onChange={(e) => setValue(e.target.value)} placeholder={`Session #${sessionId}`} aria-label="Session name" - className="min-w-0 max-w-full rounded-md border border-transparent bg-transparent px-1.5 py-0.5 font-heading text-2xl font-semibold text-foreground outline-none transition-colors placeholder:text-muted-foreground/70 hover:border-border focus:border-border focus:bg-muted/30 [field-sizing:content]" + className="min-w-0 max-w-full border-b-2 border-transparent bg-transparent px-1.5 py-0.5 font-heading text-2xl font-semibold text-foreground outline-none transition-colors placeholder:text-muted-foreground/70 hover:border-b-border focus:border-b-primary [field-sizing:content]" />