This commit is contained in:
Denozordec
2026-05-03 11:16:07 +07:00
parent ce00c4c671
commit bdb9b72fac
66 changed files with 9553 additions and 1547 deletions
+3 -3
View File
@@ -6,9 +6,9 @@ export function StatusDot({ status, pulse }: { status: ServerStatus; pulse?: boo
<span
className={cn(
"inline-block size-2 rounded-full shrink-0",
status === "online" && "bg-emerald-500",
status === "offline" && "bg-red-500",
status === "degraded" && "bg-amber-400",
status === "online" && "bg-[var(--status-online)]",
status === "offline" && "bg-[var(--status-offline)]",
status === "degraded" && "bg-[var(--status-degraded)]",
pulse && status === "online" && "animate-pulse",
)}
/>