diff --git a/packages/views/chat/components/chat-message-list.tsx b/packages/views/chat/components/chat-message-list.tsx index 4b12d8d467..fa016b0086 100644 --- a/packages/views/chat/components/chat-message-list.tsx +++ b/packages/views/chat/components/chat-message-list.tsx @@ -130,7 +130,9 @@ export function ChatMessageList({ scrollRef.current = node; setScrollContainerEl(node); }, []); - const fadeStyle = useScrollFade(scrollRef); + // Soft edge fade hinting more content above/below. Kept small so it barely + // grazes full-bleed previews (image / HTML) at the edges. + const fadeStyle = useScrollFade(scrollRef, 16); const pendingTaskId = pendingTask?.task_id ?? null;