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

Fixed double scrollbar issue in members list

closes https://github.com/TryGhost/Team/issues/2765
This commit is contained in:
Sodbileg Gansukh 2023-05-17 14:27:28 +08:00
parent d8677b4f39
commit d61249a335

View file

@ -398,7 +398,7 @@ ul.nostyle li {
position: relative;
overflow: auto;
max-width: calc(100% + 96px);
height: calc(100vh - 129px);
height: calc(100vh - 140px);
margin: 0 -48px -81px;
padding: 0 48px;
}
@ -494,10 +494,10 @@ ul.nostyle li {
background: var(--whitegrey-l2);
}
@media (min-width: 1450px) {
@media (min-width: 1441px) {
.gh-list-sticky,
.gh-list-scrolling {
height: calc(100vh - 96px);
height: calc(100vh - 103px);
}
}