From c6832f2f3ac73fd0ad0d4afe6bc228f118701596 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 18 Aug 2022 14:59:03 -0400 Subject: [PATCH] "Fixes" the perma vertical scrollbar on the Graph --- src/webviews/apps/plus/graph/graph.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webviews/apps/plus/graph/graph.scss b/src/webviews/apps/plus/graph/graph.scss index 4744b8c..806d326 100644 --- a/src/webviews/apps/plus/graph/graph.scss +++ b/src/webviews/apps/plus/graph/graph.scss @@ -170,7 +170,7 @@ body { &__container { display: flex; flex-direction: column; - height: 100vh; + height: calc(100vh - 1px); // shoot me -- the 1px is to stop the vertical scrollbar from showing up gap: 0; padding: 0 2px; }