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;
}
}