Fix timeline not scrolling to bottom reliably
This commit is contained in:
parent
feef67da5a
commit
4b6b9cce01
3 changed files with 59 additions and 18 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue