Hide scrollbar in chat area and allow text selection in chat window

This commit is contained in:
Andrew Beal 2025-09-29 00:09:10 +01:00
parent 788b83db64
commit 96fabddc9c
3 changed files with 7 additions and 1 deletions

View file

@ -127,6 +127,10 @@
padding: var(--size-4-3);
gap: var(--p-spacing);
}
.chat-area::-webkit-scrollbar {
display: none;
}
.message-container {
display: flex;

View file

@ -167,6 +167,9 @@
#chat-container {
height: 100%;
width: 100%;
max-width: 40vw;
justify-self: center;
user-select: text;
grid-row: 1;
grid-column: 1;
overflow: hidden;

View file

@ -1228,7 +1228,6 @@ body {
cursor: pointer;
font-weight: 600;
padding: 0.25em;
user-select: none;
}
.message-bubble.assistant details[open] summary {