0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Fixed forced-scrollbar on members and members-activity tables

no issue

- some browser/OS setting combinations will always show a fixed scrollbar when `overflow: scroll` is used instead of `overflow: auto`
This commit is contained in:
Kevin Ansfield 2022-02-01 09:53:55 +00:00
parent be432dc4ca
commit 25b2fd4aed

View file

@ -315,7 +315,7 @@ ul.nostyle li {
/* Horizontally scrolling list */
.gh-list-scrolling {
position: relative;
overflow: scroll;
overflow: auto;
max-width: calc(100% + 96px);
height: calc(100vh - 129px);
margin: 0 -48px -81px;