From 93fdc37f3cb0eec9f06ece12dd616cc073c65a2f Mon Sep 17 00:00:00 2001 From: Milorad Filipovic Date: Thu, 16 Mar 2023 14:24:50 +0100 Subject: [PATCH] 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 a61b145d83854..a099eda430481 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 {