From c35772f65b429f3fdbfc9afe7cc0166685fd7a2a Mon Sep 17 00:00:00 2001 From: Laurel Date: Mon, 18 Nov 2024 12:43:20 -0800 Subject: [PATCH] fix: prevent issue with double-scrollbars in really specific circumstances (#1370) --- src/view/style.scss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/view/style.scss b/src/view/style.scss index f0484c99..d866db00 100644 --- a/src/view/style.scss +++ b/src/view/style.scss @@ -71,7 +71,7 @@ $width__tablet: 782px; background: white; border: none; box-shadow: 0 0 1em 0.5em rgba(black, 0.1); - overflow-x: hidden; + overflow: hidden; position: relative; transform: none; transition: transform 0.2s ease-in-out; @@ -267,7 +267,6 @@ $width__tablet: 782px; &.newspack-lightbox-placement-top_right { .newspack-popup-wrapper { max-height: calc(100% - #{$overlay__gap}); - overflow-y: auto; } } @@ -275,7 +274,6 @@ $width__tablet: 782px; &.newspack-lightbox-placement-top { .newspack-popup-wrapper { max-height: 100%; - overflow-y: auto; } }