Issue #3446357 by mglaman, Gauravvvv, finnsky, smustgrave, mherchel: Fix overflow visibility for wrapper content in navigation CSS

(cherry picked from commit cdc8135c56)
merge-requests/8164/head
nod_ 2024-05-21 17:42:40 +02:00
parent c80972a291
commit 8ac8832201
No known key found for this signature in database
GPG Key ID: 76624892606FA197
2 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,6 @@ body {
*/
.admin-toolbar__scroll-wrapper {
display: flex;
overflow-x: hidden;
overflow-y: auto;
flex-direction: column;
height: 100%;
@ -252,6 +251,7 @@ body {
@media (min-width: 64rem) {
.admin-toolbar__scroll-wrapper {
display: contents;
overflow-y: unset;
background: none;
}
}

View File

@ -249,7 +249,6 @@ body {
*/
.admin-toolbar__scroll-wrapper {
display: flex;
overflow-x: hidden;
overflow-y: auto;
flex-direction: column;
height: 100%;
@ -264,6 +263,7 @@ body {
@media (--admin-toolbar-desktop) {
display: contents;
overflow-y: unset;
background: none;
}
}