mirror of
https://github.com/purrgrammer/grimoire.git
synced 2026-04-09 23:16:50 +02:00
refactor: use muted color for pending and publishing relay states
Changed publishing spinner from blue to muted to match pending state, creating a more consistent visual hierarchy where only success (green) and error (red) states use color.
This commit is contained in:
@@ -805,7 +805,7 @@ export function PostViewer({ windowId }: PostViewerProps = {}) {
|
||||
<Circle className="h-4 w-4 text-muted-foreground" />
|
||||
)}
|
||||
{relay.status === "publishing" && (
|
||||
<Loader2 className="h-4 w-4 animate-spin text-blue-500" />
|
||||
<Loader2 className="h-4 w-4 animate-spin text-muted-foreground" />
|
||||
)}
|
||||
{relay.status === "success" && (
|
||||
<Check className="h-4 w-4 text-green-500" />
|
||||
|
||||
Reference in New Issue
Block a user