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.
This commit is contained in:
Daniël van der Winden 2024-08-08 14:48:54 +02:00 committed by GitHub
parent bdff3d7b5c
commit e0a07c6813
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,6 +68,7 @@
@media (max-width: 1450px) {
.members-list-container-stretch {
min-height: calc(100vh - 176px);
overflow: hidden;
}
}