Merge pull request #3999 from thelounge/xpaw/fix-chrome-perf

Fix layout trashing in Chrome causing typing lag
This commit is contained in:
Pavel Djundik 2020-07-27 11:02:01 +03:00 committed by GitHub
commit d6cace3959
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2026,6 +2026,14 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */
padding-bottom: 7px;
}
.window#chat-container {
/*
Chat has its own scrollbar, so remove the one on parent
This caused a performance issue in Chrome
*/
overflow: hidden;
}
#version-checker {
display: flex;
align-items: center;