fix(client): Fix sticky sidebar behavior

This commit is contained in:
syuilo 2020-07-13 15:13:02 +09:00
parent e54fd6c2cb
commit 937df577f1
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export class StickySidebar {
if (this.isTop) {
this.isTop = false;
this.spacer.style.marginTop = `${scrollTop}px`;
this.spacer.style.marginTop = `${this.lastScrollTop}px`;
}
} else { // upscroll
const overflow = this.el.clientHeight - window.innerHeight;