feat: hide scrollbar in chat messages container for infinite scroll

The scrollbar is now hidden using `scrollbar-width: none` on the `.chat-messages` class, enabling a seamless infinite scroll experience without visible scrollbar interference.
This commit is contained in:
2025-02-17 18:32:28 +00:00
parent fc5172b9d9
commit 7485f13cef
+1 -1
View File
@@ -280,7 +280,7 @@ input[type="text"], .chat-input textarea {
} }
.chat-messages { .chat-messages {
scrollbar-width: thin; scrollbar-width: none;
scrollbar-color: #888 #f1f1f1; scrollbar-color: #888 #f1f1f1;
} }