From 7a07896d4ae2923980c02708064916430e8f86df Mon Sep 17 00:00:00 2001 From: Alex Kozack Date: Wed, 5 Apr 2023 16:46:59 +0300 Subject: [PATCH] fix: allow horisontal scroll in panels Fix https://github.com/WordPress/gutenberg/issues/49610 --- packages/edit-post/src/components/secondary-sidebar/style.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/edit-post/src/components/secondary-sidebar/style.scss b/packages/edit-post/src/components/secondary-sidebar/style.scss index 10e148bbb2762c..c3c5bf5e24c616 100644 --- a/packages/edit-post/src/components/secondary-sidebar/style.scss +++ b/packages/edit-post/src/components/secondary-sidebar/style.scss @@ -62,8 +62,7 @@ .edit-post-editor__list-view-panel-content, .edit-post-editor__list-view-container > .document-outline, .edit-post-editor__list-view-empty-headings { - overflow-x: hidden; - overflow-y: auto; + overflow: auto; height: 100%; // The table cells use an extra pixels of space left and right. We compensate for that here. padding: $grid-unit-10 ($grid-unit-10 - $border-width - $border-width);