Verified Commit 2fffa8f3 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3446357 by mglaman, Gauravvvv, finnsky, smustgrave, mherchel: Fix...

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

(cherry picked from commit cdc8135c)
parent cc96f977
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -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;
  }
}