Skip to content

Commit 40bf9e7

Browse files
authored
Fix padding problem in #2965 (#3084)
1 parent 8c428b5 commit 40bf9e7

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
@@ -1232,7 +1232,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
12321232
</div>
12331233
)}
12341234
<div
1235-
className={` w-full flex flex-col gap-4 m-auto ${isExpanded && tasks.length > 0 ? "mt-0" : ""} max-[370px]:p-3.5 p-10 pt-5 transition-all duration-300`}>
1235+
className={` w-full flex flex-col gap-4 m-auto ${isExpanded && tasks.length > 0 ? "mt-0" : ""} px-3.5 min-[370px]:px-10 pt-5 transition-all duration-300`}>
12361236
<RooHero />
12371237
{telemetrySetting === "unset" && <TelemetryBanner />}
12381238
{/* Show the task history preview if expanded and tasks exist */}

0 commit comments

Comments
 (0)