From a30c07fbb53be2ef1cbb59cae28b9aa7c3496831 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 18 Oct 2023 02:55:47 +0200 Subject: [PATCH] [Execute UI] Make sure that the list of arguments doesn't overflow. --- .../http/webapp/src/components/panels/Execute/common.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platypush/backend/http/webapp/src/components/panels/Execute/common.scss b/platypush/backend/http/webapp/src/components/panels/Execute/common.scss index d05f2720..2e6a3a3f 100644 --- a/platypush/backend/http/webapp/src/components/panels/Execute/common.scss +++ b/platypush/backend/http/webapp/src/components/panels/Execute/common.scss @@ -150,6 +150,7 @@ form { .args-list { padding-top: 0.5em; + overflow: auto; @include until($tablet) { width: 100%; @@ -187,6 +188,7 @@ form { } .args-body { + max-height: calc(50vh - 4.5em); display: flex; margin-top: 0.15em; margin-bottom: 1.5em;