1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-06 09:37:36 +03:00

fix(editor): Fix overflow in AI Assistant chat messages (#10491)

This commit is contained in:
Milorad FIlipović 2024-08-21 11:03:59 +02:00 committed by GitHub
parent ecd287564d
commit 4a6ca63210
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -308,12 +308,14 @@ p {
border: var(--border-base);
border-top: 0;
height: 100%;
overflow: scroll;
overflow-x: hidden;
overflow-y: auto;
padding-bottom: 250px; // make scrollable at the end
position: relative;
pre {
text-wrap: stable;
pre,
code {
text-wrap: wrap;
}
}