1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-05 07:38:57 +00:00

quickfix: StickyContainer maxScrollTop must be lower than 0

This commit is contained in:
Szymon Lesisz 2018-10-15 17:34:56 +02:00
parent f4b51d606f
commit 3e657d6558

View File

@ -130,7 +130,7 @@ export default class StickyContainer extends React.PureComponent<Props, State> {
// make sure that wrapper will not be over scrolled
if (state.wrapperTopOffset > 0) state.wrapperTopOffset = 0;
const maxScrollTop = viewportHeight - wrapperBounds.height;
if (state.wrapperTopOffset < maxScrollTop) state.wrapperTopOffset = maxScrollTop;
if (maxScrollTop < 0 && state.wrapperTopOffset < maxScrollTop) state.wrapperTopOffset = maxScrollTop;
} else {
// update wrapper "top" to be same as "aside" element
state.wrapperTopOffset = asideBounds.top;