Fix JS issues hiding wiki info

This commit is contained in:
2025-07-15 01:05:52 -04:00
parent 026da38e6f
commit a14126b077
2 changed files with 2 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ const observer = new IntersectionObserver((entries) => {
entry.target.style.transitionDelay = `${index * 0.1}s`;
}
});
}, { threshold: 0.1 });
}, { threshold: 0.01 }); // Lowered from 0.1 to 0.01
sections.forEach(section => {
section.style.transform = 'translateY(30px)';