atproto explorer pdsls.dev
atproto tool

fix trailing star effect when scrolling

juli.ee becd44cf 66ca6faf

verified
Changed files
+2 -2
src
+2 -2
src/layout.tsx
···
const star = document.createElement("div");
star.className = "star";
star.textContent = "✨";
-
star.style.left = e.pageX + "px";
-
star.style.top = e.pageY + "px";
+
star.style.left = e.clientX + "px";
+
star.style.top = e.clientY + "px";
const tx = (Math.random() - 0.5) * 50;
const ty = (Math.random() - 0.5) * 50;