Fix: Desktop Mausrad-Scroll — overscroll-behavior:auto auf html/body + #page-content ab 768px, SW by-v537

This commit is contained in:
rene 2026-04-30 09:41:50 +02:00
parent f01b0b228d
commit 3cb18acb44
3 changed files with 12 additions and 7 deletions

View file

@ -30,11 +30,16 @@
flex-direction: row;
}
#page-content {
min-height: unset;
overflow-y: visible; /* window scrollt auf Desktop */
overflow-x: visible;
padding-bottom: 0;
padding-left: var(--nav-sidebar-width);
min-height: unset;
overflow-y: visible;
overflow-x: visible;
overscroll-behavior-y: auto; /* Mausrad-Scroll auf Desktop erlauben */
padding-bottom: 0;
padding-left: var(--nav-sidebar-width);
}
/* Kein overscroll-block auf Desktop */
html, body {
overscroll-behavior: auto;
}
}