diff --git a/app/globals.css b/app/globals.css index a05fb5f..1951a70 100644 --- a/app/globals.css +++ b/app/globals.css @@ -101,14 +101,10 @@ body { animation: marqueeScroll 30s linear infinite; } -/* Scroll-driven progress bar (Safari 18 / iOS 18+) */ -@keyframes growX { - from { transform: scaleX(0); } - to { transform: scaleX(1); } -} +/* Scroll progress bar — updated via JS in Navbar */ .scroll-progress { - animation: growX linear both; - animation-timeline: scroll(root); + transform: scaleX(0); + will-change: transform; } @keyframes shine { diff --git a/components/sections/more-about.tsx b/components/sections/more-about.tsx index 90c3aba..8293bcb 100644 --- a/components/sections/more-about.tsx +++ b/components/sections/more-about.tsx @@ -42,7 +42,7 @@ export async function MoreAboutSection() { {/* Image Column */} -