From c66236eea83d202e489852d4e39e6755d7e1959e Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 16 Sep 2021 13:40:02 +0530 Subject: [PATCH] fix: field container height to avoid scroll --- frappe/public/js/print_format_builder/PrintFormatControls.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/print_format_builder/PrintFormatControls.vue b/frappe/public/js/print_format_builder/PrintFormatControls.vue index ba01eaa16d..7cac222a81 100644 --- a/frappe/public/js/print_format_builder/PrintFormatControls.vue +++ b/frappe/public/js/print_format_builder/PrintFormatControls.vue @@ -201,7 +201,7 @@ export default { } .fields-container { - max-height: calc(100vh - 22rem); + max-height: calc(100vh - 26rem); overflow-y: auto; }