Skip to content

Commit 90a601d

Browse files
committed
fix: live indicator clipping
1 parent 214c382 commit 90a601d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ export const PlanningBar: FC<PlanningBarProps> = ({ isStreaming, requestedPlan,
2323
className={`${isStreaming ? "rainbow-border-glow-visible" : ""}
2424
absolute inset-0 rainbow-border-glow blur -z-10 rounded-full `}
2525
/>
26-
<div className="flex-1 flex h-full align-middle ml-5 gap-4 relative overflow-hidden">
27-
<div className="relative h-full my-auto mr-1 flex-shrink-0 min-w-4">
26+
<div className="relative h-full my-auto mr-1 flex-shrink-0 min-w-4 ml-4">
2827
<div className={`circle ${isStreaming ? "animated-circle" : ""}`} />
2928
</div>
29+
<div className="flex-1 flex h-full align-middle gap-4 relative overflow-hidden">
30+
3031
<div className="my-auto text-sm flex-shrink-0">Creating</div>
3132
<div className="relative my-auto min-w-0 flex-shrink overflow-hidden max-w-64">
3233
<div className="text-white/80 text-sm truncate">{requestedPlan}</div>

0 commit comments

Comments
 (0)