diff --git a/apps/website/src/components/SmoothScroll.svelte b/apps/website/src/components/SmoothScroll.svelte index 46dc94d..4335107 100644 --- a/apps/website/src/components/SmoothScroll.svelte +++ b/apps/website/src/components/SmoothScroll.svelte @@ -12,8 +12,8 @@ $smoothScroll = new Lenis({ duration: 1.2, easing: (t: number) => (t === 1 ? 1 : 1 - Math.pow(2, -10 * t)), // https://easings.net/ - smooth: true, - direction: 'vertical', + smoothWheel: true, + orientation: 'vertical', }) }