refactor: remove README and REFACTOR_PROGRESS files; enhance MainLayout with sidebar icons and improved navigation item display

This commit is contained in:
Supra4E8C
2025-12-09 01:46:58 +08:00
parent 2ca662e971
commit 5d5334afb1
4 changed files with 123 additions and 212 deletions

View File

@@ -59,6 +59,28 @@
cursor: pointer;
transition: background $transition-fast, color $transition-fast;
.nav-icon {
width: 20px;
height: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
opacity: 0.9;
svg {
width: 18px;
height: 18px;
display: block;
}
}
.nav-label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
&:hover {
background: var(--bg-secondary);
}