Hello there! Thank you so much for this wonderful package. The smooth scrolling seems to be working pretty fine, but while scrolling through sections on my page, I get this flickering line between them which fades off after I stop scrolling. I went through the docs and added the
html,
body {
overscroll-behavior: none;
}
to my css file, but it doesn't seem to solve anything. It's a single page next.js website and here is the structure of my page.tsx:
return (
<ScrollerMotion>
<main className="flex flex-col items-center justify-center">
<Hero />
<Work />
<About />
<Contact />
<Footer />
</main>
</ScrollerMotion>
);
Is there a way to solve this? Thank you for your time!
Hello there! Thank you so much for this wonderful package. The smooth scrolling seems to be working pretty fine, but while scrolling through sections on my page, I get this flickering line between them which fades off after I stop scrolling. I went through the docs and added the
to my css file, but it doesn't seem to solve anything. It's a single page next.js website and here is the structure of my page.tsx:
Is there a way to solve this? Thank you for your time!