chore(dashboard): drop unused --bg-tertiary fallback on plugin install hint

The fallback pointed at a token that doesn't exist in any theme; the
color-mix expression was already the intended value.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-04-25 11:38:05 -07:00
parent adbad8afca
commit d9072a4db6

View File

@@ -41,10 +41,7 @@
.plugin-install-hint code {
padding: 1px var(--space-xs);
border-radius: var(--radius-sm);
background: var(
--bg-tertiary,
color-mix(in srgb, var(--text-muted) 12%, transparent)
);
background: color-mix(in srgb, var(--text-muted) 12%, transparent);
font-size: 0.85em;
}