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