Skip to content

Commit b742c15

Browse files
committed
fix: adjust version indicator padding to prevent scrollbar overlap
- Change right padding from right-2 (8px) to right-3 (12px) - Aligns with the px-3 padding pattern used in TaskHeader - Provides proper clearance from scrollbar
1 parent f69ea0a commit b742c15

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
@@ -1367,7 +1367,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
13671367
return (
13681368
<div className={isHidden ? "hidden" : "fixed top-0 left-0 right-0 bottom-0 flex flex-col overflow-hidden"}>
13691369
{/* Version indicator in top-right corner */}
1370-
<VersionIndicator onClick={() => setShowAnnouncementModal(true)} className="absolute top-2 right-2 z-10" />
1370+
<VersionIndicator onClick={() => setShowAnnouncementModal(true)} className="absolute top-2 right-3 z-10" />
13711371

13721372
{(showAnnouncement || showAnnouncementModal) && (
13731373
<Announcement

0 commit comments

Comments
 (0)