Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions gui/src/components/mainInput/ContextStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,16 @@ const ContextStatus = () => {
</div>
}
>
<div className="border-command-border relative h-[14px] w-[7px] rounded-[1px] border-[0.5px] border-solid md:h-[10px] md:w-[5px]">
<div
className={`transition-height absolute bottom-0 left-0 w-full duration-300 ease-in-out ${barColorClass}`}
style={{ height: `${percent}%` }}
/>
<div className="flex items-center gap-1">
<div className="border-command-border relative h-[14px] w-[7px] rounded-[1px] border-[0.5px] border-solid md:h-[10px] md:w-[5px]">
<div
className={`transition-height absolute bottom-0 left-0 w-full duration-300 ease-in-out ${barColorClass}`}
style={{ height: `${percent}%` }}
/>
</div>
<span className="text-description text-[9px] leading-none">
{percent}%
</span>
</div>
</ToolTip>
</div>
Expand Down
Loading