mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #37546 from nextcloud/backport/37417/stable25
[stable25] fix: Avoid scrolling the #content wrapper container
This commit is contained in:
commit
3c1471ca89
3 changed files with 3 additions and 3 deletions
|
|
@ -681,7 +681,7 @@ kbd {
|
|||
width: calc(100% - var(--body-container-margin) * 2);
|
||||
height: var(--body-height);
|
||||
border-radius: var(--body-container-radius);
|
||||
overflow: hidden;
|
||||
overflow: clip;
|
||||
}
|
||||
#content:not(.with-sidebar--full) {
|
||||
position: fixed;
|
||||
|
|
|
|||
|
|
@ -667,7 +667,7 @@ kbd {
|
|||
width: calc(100% - var(--body-container-margin) * 2);
|
||||
height: var(--body-height);
|
||||
border-radius: var(--body-container-radius);
|
||||
overflow: hidden;
|
||||
overflow: clip;
|
||||
|
||||
&:not(.with-sidebar--full) {
|
||||
position: fixed;
|
||||
|
|
|
|||
|
|
@ -3150,7 +3150,7 @@ kbd {
|
|||
width: calc(100% - var(--body-container-margin) * 2);
|
||||
height: var(--body-height);
|
||||
border-radius: var(--body-container-radius);
|
||||
overflow: hidden;
|
||||
overflow: clip;
|
||||
}
|
||||
#content:not(.with-sidebar--full) {
|
||||
position: fixed;
|
||||
|
|
|
|||
Loading…
Reference in a new issue