Added a new project and fixed scrollupbutton

This commit is contained in:
2025-09-04 00:03:02 -06:00
parent 08537db2ab
commit a2a3b114dd
6 changed files with 315 additions and 277 deletions

View File

@@ -7,7 +7,7 @@ export default function ScrollUpButton() {
useEffect(() => {
const checkScroll = () => {
isVisible.value = window.scrollY > 300;
isVisible.value = window.scrollY > 50;
};
checkScroll();