fix: added green color for done status tooltip, and lightens destructive color

This commit is contained in:
190km
2024-11-28 22:02:49 +01:00
parent 37fa139a65
commit 22b8fa2c00
4 changed files with 2114 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ export const StatusTooltip = ({ status, className }: Props) => {
)}
{status === "done" && (
<div
className={cn("size-3.5 rounded-full bg-primary", className)}
className={cn("size-3.5 rounded-full bg-green-500", className)}
/>
)}
{status === "running" && (