fix(now-playing): empty state uses theme-aware text color (#759)

`.np-empty-state` hardcoded `rgba(255, 255, 255, 0.5)` so the "Nothing
playing yet…" message and its music-note icon were invisible against
light themes (white text on white background). Switch to
`var(--text-muted)`, matching the mobile `.mp-empty` rule and the
shared `.empty-state` utility.
This commit is contained in:
Frank Stellmacher
2026-05-17 20:44:30 +02:00
committed by GitHub
parent 8ac5a69a7c
commit 48f3153bd2
+1 -1
View File
@@ -630,7 +630,7 @@
flex-direction: column;
align-items: center;
gap: 12px;
color: rgba(255, 255, 255, 0.5);
color: var(--text-muted);
padding: 40px 0;
}