docs: 完善 README 并修复暗黑模式左侧导航栏可见性

This commit is contained in:
2026-04-27 23:02:22 +08:00
parent 89ba4163fc
commit c161660b51
2 changed files with 224 additions and 138 deletions
+12 -1
View File
@@ -393,7 +393,18 @@ async function handleLogout() {
}
:global(html[data-theme="dark"]) .app-sidebar {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
background: var(--bg-subtle);
border-right-color: var(--border-base);
}
:global(html[data-theme="dark"]) .app-nav-menu :deep(.el-menu-item.is-active) {
background: linear-gradient(180deg, rgba(91, 168, 255, 0.18), rgba(91, 168, 255, 0.1));
box-shadow: inset 0 0 0 1px rgba(91, 168, 255, 0.2);
}
:global(html[data-theme="dark"]) .app-nav-icon-item.is-active {
background: linear-gradient(180deg, rgba(91, 168, 255, 0.18), rgba(91, 168, 255, 0.1));
box-shadow: inset 0 0 0 1px rgba(91, 168, 255, 0.2);
}
.app-sidebar--collapsed {