From d9eb83add55105c8f7a126e303f1623a15ff03b4 Mon Sep 17 00:00:00 2001 From: Tyler Trout Date: Mon, 13 Apr 2020 11:32:24 -0400 Subject: [PATCH] Fix overflow causing double scroll This seems to fix this issue #112 --- client/src/styles/bundle.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/src/styles/bundle.scss b/client/src/styles/bundle.scss index a2ed2d0..1c28709 100644 --- a/client/src/styles/bundle.scss +++ b/client/src/styles/bundle.scss @@ -2,6 +2,9 @@ div.field.display-logic-hidden, div.displaylogicwrapper.display-logic-hidden { display:none; } +div.displaylogicwrapper.display-logic { + position: relative; +} @media (min-width: 992px) { @@ -9,4 +12,4 @@ div.displaylogicwrapper.display-logic-hidden { display: none; } -} \ No newline at end of file +}