DEV: move chat scrollbar style to scollbar file (#25934)

This commit is contained in:
Kris 2024-02-28 13:07:22 -05:00 committed by GitHub
parent 6426eaff39
commit c8133318b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -140,10 +140,6 @@
width: 28px; width: 28px;
height: 28px; height: 28px;
} }
pre {
scrollbar-color: var(--primary-300) transparent;
}
} }
.touch .chat-message-container { .touch .chat-message-container {

View File

@ -41,3 +41,9 @@
width: var(--scrollbarWidth); width: var(--scrollbarWidth);
} }
} }
.chat-message-text {
pre {
scrollbar-color: var(--primary-300) transparent;
}
}