mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
fix(editor): Fix for large notifications being cut off (#5705)
fix(editor): Fix for large notification being cut off
This commit is contained in:
parent
0876c38aae
commit
c07f838ce6
|
@ -151,6 +151,8 @@
|
||||||
.el-notification__content {
|
.el-notification__content {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
|
max-height: 60vh;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tags-container {
|
.tags-container {
|
||||||
|
|
Loading…
Reference in a new issue