From 7ae9d3bbb02a81cc90aad24905304f84b5fb44f8 Mon Sep 17 00:00:00 2001 From: malee1975 <140089412+malee1975@users.noreply.github.com> Date: Thu, 30 May 2024 11:45:26 +0100 Subject: [PATCH] Update editor.scss It seems to be that when using Chrome and Edge on windows that the scrollbar is always visible until there is an action within the edit dialog. This issue seems to be specific to the configuration dialogs --- .../node_modules/@node-red/editor-client/src/sass/editor.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node_modules/@node-red/editor-client/src/sass/editor.scss b/packages/node_modules/@node-red/editor-client/src/sass/editor.scss index dcc8060d4..7bb26b139 100644 --- a/packages/node_modules/@node-red/editor-client/src/sass/editor.scss +++ b/packages/node_modules/@node-red/editor-client/src/sass/editor.scss @@ -193,7 +193,7 @@ button.red-ui-tray-resize-button { .red-ui-editor .red-ui-tray { .dialog-form, #dialog-form, #node-config-dialog-edit-form { margin: 10px 20px; - height: calc(100% - 20px); + height: calc(100% - 22px); } }