Skip to content

Commit 9fa9cb4

Browse files
authored
Soften chat composer focus border color (#188)
- Reduce focused composer border intensity using `focus-within:border-ring/45` - Keeps drag-over styling behavior unchanged
1 parent 24599aa commit 9fa9cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/components/ChatView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3396,7 +3396,7 @@ export default function ChatView({ threadId }: ChatViewProps) {
33963396
data-chat-composer-form="true"
33973397
>
33983398
<div
3399-
className={`group rounded-[20px] border bg-card transition-colors duration-200 focus-within:border-ring ${
3399+
className={`group rounded-[20px] border bg-card transition-colors duration-200 focus-within:border-ring/45 ${
34003400
isDragOverComposer ? "border-primary/70 bg-accent/30" : "border-border"
34013401
}`}
34023402
onDragEnter={onComposerDragEnter}

0 commit comments

Comments
 (0)