From f1ade7d3efe71c2e621a3d4a75578334fa89b660 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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/css/general.css b/assets/css/general.css index cb66b861..cd82e5be 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -250,4 +250,8 @@ color: #ffffff; .dxatlasdatepicker { padding-right: 0; padding-left: 0; +} +.modal-body { + max-height: calc(100vh - 200px); + overflow-y: auto; } \ No newline at end of file