Skip to content

Commit

Permalink
fix(editor): Fix overflow in AI Assistant chat messages (n8n-io#10491)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloradFilipovic authored Aug 21, 2024
1 parent ecd2875 commit 4a6ca63
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 4a6ca63

Please sign in to comment.