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:
parent
be432dc4ca
commit
25b2fd4aed
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ ul.nostyle li {
|
||||||
/* Horizontally scrolling list */
|
/* Horizontally scrolling list */
|
||||||
.gh-list-scrolling {
|
.gh-list-scrolling {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
max-width: calc(100% + 96px);
|
max-width: calc(100% + 96px);
|
||||||
height: calc(100vh - 129px);
|
height: calc(100vh - 129px);
|
||||||
margin: 0 -48px -81px;
|
margin: 0 -48px -81px;
|
||||||
|
|
Loading…
Add table
Reference in a new issue