Improve plan scroll (#908)

* Done! I've removed the scrolling classes from the plan container. Plans will now use the parent chat history scroll instead of having their own nested scroll behavior.

The fix removes `max-h-[65vh] overflow-y-auto overscroll-contain` while preserving the padding and background styling.

* Cleanup script changes for task attempt 6c65f630-c1bb-4069-b3d8-7d937fc35bf7
This commit is contained in:
Louis Knight-Webb
2025-10-01 18:10:45 +01:00
committed by GitHub
parent 0e431705d0
commit b631f6fbc6

View File

@@ -401,12 +401,7 @@ const PlanPresentationCard: React.FC<{
</button>
{expanded && (
<div
className={cn(
'px-3 py-2 max-h-[65vh] overflow-y-auto overscroll-contain',
tone.contentBg
)}
>
<div className={cn('px-3 py-2', tone.contentBg)}>
<div className={cn('text-sm', tone.contentText)}>
<MarkdownRenderer
content={plan}