From a94006491ec986ffb508ea4cc7ae82828a22c8fe Mon Sep 17 00:00:00 2001 From: Filip Barl Date: Mon, 20 Mar 2017 14:47:48 +0100 Subject: [PATCH] Fix help panel fields max height. --- client/app/styles/_base.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/styles/_base.scss b/client/app/styles/_base.scss index c2d22f2f3..0808d2e0f 100644 --- a/client/app/styles/_base.scss +++ b/client/app/styles/_base.scss @@ -1650,7 +1650,7 @@ // Notes: Firefox gets a bit messy if you try and bubble // heights + overflow up (min-height issue + still doesn't work v.well), // so this is a bit of a hack. - max-height: "calc(100vh - 160px - 160px - 160px)"; + max-height: calc(100vh - 160px - 160px - 160px); } } }