Fix timeline not scrolling to bottom reliably

This commit is contained in:
Evan Hahn 2022-03-08 15:54:27 -06:00 committed by GitHub
parent feef67da5a
commit 4b6b9cce01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 59 additions and 18 deletions

View file

@ -5471,6 +5471,21 @@ button.module-image__border-overlay:focus {
.module-timeline__messages {
flex: 1 1;
padding-bottom: 6px;
// This is a modified version of ["Pin Scrolling to Bottom"][0].
// [0]: https://css-tricks.com/books/greatest-css-tricks/pin-scrolling-to-bottom/
&--have-newest {
& > * {
overflow-anchor: none;
}
&::after {
content: '';
height: 1px;
display: block;
overflow-anchor: auto;
}
}
}
.ReactVirtualized__List {