Skip to content

Commit ad48d48

Browse files
committed
Fix: Adjust padding in chat view for better UI
1 parent 42c1f5f commit ad48d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webview-ui/src/components/chat/ChatView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
12561256
</div>
12571257
)}
12581258
<div
1259-
className={` w-full flex flex-col gap-4 m-auto ${isExpanded && tasks.length > 0 ? "mt-0" : ""} p-10 pt-5`}>
1259+
className={` w-full flex flex-col gap-4 m-auto ${isExpanded && tasks.length > 0 ? "mt-0" : ""} p-4 pt-5`}>
12601260
<RooHero />
12611261
{telemetrySetting === "unset" && <TelemetryBanner />}
12621262
{/* Show the task history preview if expanded and tasks exist */}

0 commit comments

Comments
 (0)