fix(55-desktop-collapsed-sidebar-fix): ukrycie etykiet i centrowanie ikon w zwiniętym sidebarze

Zwiniety sidebar (is-collapsed) pokazywal obciete etykiety zamiast
czystych ikon. Naprawiono: display:none na labelach/strzalkach/sublinkach,
justify-content:center na linkach, ukrycie brand text.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-29 23:51:24 +02:00
parent 4b38f3e7a6
commit 1f449f84ad
7 changed files with 340 additions and 8 deletions

View File

@@ -48,6 +48,40 @@ a {
.sidebar.is-collapsed {
width: 52px;
min-width: 52px;
padding: 18px 0;
.sidebar__brand-text {
display: none;
}
.sidebar__brand {
justify-content: center;
margin: 4px 0 16px;
}
.sidebar__label {
display: none;
}
.sidebar__toggle-arrow {
display: none;
}
.sidebar__link,
.sidebar__group-toggle {
justify-content: center;
padding: 9px;
border-radius: 8px;
margin: 0 6px;
}
.sidebar__group-links {
display: none;
}
.sidebar__icon {
margin: 0;
}
}
.sidebar__brand {