koala-interactive/react-anchor-navigation

AnchorProvider offset not working

Opened this issue · 1 comments

clns commented

The AnchorProvider.offset doesn't seem to work. It always scrolls to the top of the viewport.

Am I missing something?

clns commented

You can work around it by using the following style on AnchorSection:

const anchorOffset = 58;
<AnchorSection id="id" style={{ position: 'relative', display: 'block', top: -anchorOffset + 'px' }} />