atproto explorer

fix trailing star effect when scrolling

handle.invalid becd44cf 66ca6faf

verified
+2 -2
+2 -2
src/layout.tsx
··· 95 95 const star = document.createElement("div"); 96 96 star.className = "star"; 97 97 star.textContent = "✨"; 98 - star.style.left = e.pageX + "px"; 99 - star.style.top = e.pageY + "px"; 98 + star.style.left = e.clientX + "px"; 99 + star.style.top = e.clientY + "px"; 100 100 101 101 const tx = (Math.random() - 0.5) * 50; 102 102 const ty = (Math.random() - 0.5) * 50;