From e0a07c6813a36915c4e2f3d1c7363e264a85a535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20der=20Winden?= Date: Thu, 8 Aug 2024 14:48:54 +0200 Subject: [PATCH] Hide overflow on member list container (#20729) Fixes https://linear.app/tryghost/issue/DES-561/horizontal-scroll-on-members-index-shows-on-both-sides-of-table On resolutions where the members list needed horizontal scrollbars, the table was overflowing on the left side of the list. This hides that overflow and fixes the issue. --- ghost/admin/app/styles/layouts/members.css | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/admin/app/styles/layouts/members.css b/ghost/admin/app/styles/layouts/members.css index e9c7383ee5..bfbd1ce2e3 100644 --- a/ghost/admin/app/styles/layouts/members.css +++ b/ghost/admin/app/styles/layouts/members.css @@ -68,6 +68,7 @@ @media (max-width: 1450px) { .members-list-container-stretch { min-height: calc(100vh - 176px); + overflow: hidden; } }