MAINT: Explicitly use scrollbar-gutter: auto for the chat log

This commit is contained in:
bananarama92 2025-04-08 21:24:48 +02:00
parent 7aba74bc2c
commit dd2885244f
No known key found for this signature in database
GPG key ID: E83C7D3B5DA36248

View file

@ -64,11 +64,16 @@
margin-bottom: max(3px, min(0.4vh, 0.2vw));
}
/*
* NOTE: Explicitly set the scrollbar gutter to auto, as the combination of `overflow-y: scroll` and
* `scrollbar-gutter: stable` (see `.scroll-box`) can get laggy on Chrome due to optimization issues
*/
#TextAreaChatLog {
background-color: white;
word-wrap: break-word;
padding: 0 !important;
overflow-y: scroll;
scrollbar-gutter: auto;
height: max-content;
}