From c07f838ce60dc33261fe3e1b5e7dd6fe05f1d63b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milorad=20FIlipovi=C4=87?= Date: Thu, 16 Mar 2023 15:29:57 +0100 Subject: [PATCH] fix(editor): Fix for large notifications being cut off (#5705) fix(editor): Fix for large notification being cut off --- packages/editor-ui/src/n8n-theme.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/editor-ui/src/n8n-theme.scss b/packages/editor-ui/src/n8n-theme.scss index a61b145d8..a099eda43 100644 --- a/packages/editor-ui/src/n8n-theme.scss +++ b/packages/editor-ui/src/n8n-theme.scss @@ -151,6 +151,8 @@ .el-notification__content { text-align: left; word-break: break-word; + max-height: 60vh; + overflow-y: auto; } .tags-container {