Fix: Desktop Mausrad-Scroll — overscroll-behavior:auto auf html/body + #page-content ab 768px, SW by-v537
This commit is contained in:
parent
f01b0b228d
commit
3cb18acb44
3 changed files with 12 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue