mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
Hide scrollbar in chat area and allow text selection in chat window
This commit is contained in:
parent
788b83db64
commit
96fabddc9c
3 changed files with 7 additions and 1 deletions
|
|
@ -127,6 +127,10 @@
|
|||
padding: var(--size-4-3);
|
||||
gap: var(--p-spacing);
|
||||
}
|
||||
|
||||
.chat-area::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.message-container {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1228,7 +1228,6 @@ body {
|
|||
cursor: pointer;
|
||||
font-weight: 600;
|
||||
padding: 0.25em;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.message-bubble.assistant details[open] summary {
|
||||
|
|
|
|||
Loading…
Reference in a new issue