From 106559d1eba7b15c11af85191217b8751729c166 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 15 Sep 2021 17:08:00 +0200 Subject: [PATCH] This CSS fix adds a scrollbar to the modal if content height is greater than resolution --- assets/css/general.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/assets/css/general.css b/assets/css/general.css index 77f5e3a8..6d803c75 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -242,4 +242,9 @@ color: #ffffff; .was-map-dialog .modal-dialog { max-width: 73% !important; } - } \ No newline at end of file + } + +.modal-body { + max-height: calc(100vh - 200px); + overflow-y: auto; +} \ No newline at end of file