mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(editor): Fix overflow in AI Assistant chat messages (#10491)
This commit is contained in:
parent
ecd287564d
commit
4a6ca63210
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue