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
parent
c80972a291
commit
8ac8832201
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue