From 8a74715d88c44e6c5180a63cb3592464f70c17a9 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Thu, 31 Aug 2023 22:58:28 +0900 Subject: [PATCH] -1px gap for sheld to fix MovingUI lockup --- public/style.css | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/public/style.css b/public/style.css index 9f750d875..5fa69bde5 100644 --- a/public/style.css +++ b/public/style.css @@ -399,9 +399,10 @@ hr { #sheld { display: grid; grid-template-rows: auto min-content; - height: calc(100vh - var(--topBarBlockSize)); - height: calc(100svh - var(--topBarBlockSize)); - max-height: calc(100svh - var(--topBarBlockSize)); + /* -1px to give sheld some wiggle room to bounce off tobar when moving*/ + height: calc(100vh - var(--topBarBlockSize) - 1px); + height: calc(100svh - var(--topBarBlockSize) - 1px); + max-height: calc(100svh - var(--topBarBlockSize) - 1px); overflow-x: hidden; /* max-width: 50vw; */ position: absolute; @@ -3436,8 +3437,10 @@ a { /* Hide scrollbar for IE, Edge, and Firefox */ .no-scrollbar { - -ms-overflow-style: none; /* IE and Edge */ - scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; + /* IE and Edge */ + scrollbar-width: none; + /* Firefox */ } #groupMemberListPopoutClose { @@ -3560,7 +3563,7 @@ a { text-align: left; } -.onboarding > h3 { +.onboarding>h3 { align-self: center; }