fix: dark mode overrides for plaza sidebar and nav buttons

This commit is contained in:
yumoqing 2026-06-02 21:00:27 +08:00
parent 311b0aec6f
commit 3743dec00d

View File

@ -40,6 +40,23 @@
background-color: var(--sage-hover, rgba(99, 102, 241, 0.08));
}
/* Dark mode overrides for sidebar */
[data-theme="dark"] .plaza-sidebar {
border-right: 1px solid #334155;
background-color: #1E293B;
}
[data-theme="dark"] .plaza-nav-btn {
background-color: transparent;
color: #CBD5E1;
border: none;
}
[data-theme="dark"] .plaza-nav-btn:hover {
background-color: #334155;
color: #F1F5F9;
}
/* Card hover effects for model cards */
.plaza-card {
transition: transform 0.2s ease, box-shadow 0.2s ease;