Fix layout trashing in Chrome

https://bugs.chromium.org/p/chromium/issues/detail?id=1063575#c21
This commit is contained in:
Pavel Djundik 2020-07-24 19:06:32 +03:00
parent aaaf498ada
commit 3e26611e9f

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;