Trainingsplanung und Rahmenplanung #9

Merged
Lars merged 29 commits from develop into main 2026-05-05 16:05:01 +02:00
Showing only changes of commit 0971f35402 - Show all commits

View File

@ -18,6 +18,7 @@
--header-h: 52px;
--font: system-ui, -apple-system, 'Segoe UI', sans-serif;
--capture-content-max: 800px;
--desktop-sidebar-width: 220px;
}
@media (prefers-color-scheme: dark) {
:root {
@ -2124,7 +2125,7 @@ a.analysis-split__nav-item {
.desktop-sidebar {
display: none;
flex-direction: column;
width: 220px;
width: var(--desktop-sidebar-width, 220px);
height: 100vh;
position: fixed;
left: 0;
@ -2259,15 +2260,21 @@ a.analysis-split__nav-item {
margin: 0;
width: 100%;
min-height: 100%;
overflow-x: clip;
}
.desktop-sidebar {
display: flex;
}
/* Kein width:100% zusätzlich zu margin-left — sonst Spalte = Viewport + Sidebar → horizontaler Scroll */
.app-shell__column {
margin-left: 220px;
margin-left: var(--desktop-sidebar-width, 220px);
width: calc(100% - var(--desktop-sidebar-width, 220px));
max-width: calc(100% - var(--desktop-sidebar-width, 220px));
min-width: 0;
min-height: 100vh;
box-sizing: border-box;
}
.app-header--mobile {