mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
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:
committed by
GitHub
parent
8ac5a69a7c
commit
48f3153bd2
@@ -630,7 +630,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
color: rgba(255, 255, 255, 0.5);
|
color: var(--text-muted);
|
||||||
padding: 40px 0;
|
padding: 40px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user