From e39589d00de596d0b48db1fdd0cde3952fbae00f Mon Sep 17 00:00:00 2001 From: Valentin Kaelin Date: Tue, 31 Mar 2020 14:03:43 +0200 Subject: [PATCH] fix: sidebar in overview tab glitch when > than the content --- client/src/views/Summoner.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/views/Summoner.vue b/client/src/views/Summoner.vue index 7426fcd..f05cb02 100644 --- a/client/src/views/Summoner.vue +++ b/client/src/views/Summoner.vue @@ -110,7 +110,7 @@ export default { }, isSidebarFixed() { if (!this.sidebarRectangle.height) return - this.fixedSidebar = window.innerHeight + document.documentElement.scrollTop > this.sidebarRectangle.y + this.sidebarRectangle.height + 112 + this.fixedSidebar = window.innerHeight + document.documentElement.scrollTop > this.sidebarRectangle.y + this.sidebarRectangle.height + 121 }, ...mapActions('summoner', ['moreMatches', 'overviewRequest']), }, @@ -123,7 +123,7 @@ export default { } .fixed-sidebar { - bottom: 112px; + bottom: 121px; } .pushed-container {