Fix scroll: window.scrollTo(0) on Next/Prev — scrolls to top of page, not just element

This commit is contained in:
Daniel 2026-04-01 05:05:33 +02:00
parent 92fdf55cd9
commit 1db3e7f368

View file

@ -232,7 +232,8 @@ useEffect(() => {
const safeNavigate = (targetIdx) => {
setCurrentIdx(targetIdx)
setTimeout(() => {
document.querySelector('.question-card')?.scrollIntoView({ behavior: 'smooth', block: 'start' })
// Scroll to top of page so user sees the full question from the start
window.scrollTo({ top: 0, behavior: 'smooth' })
}, 50)
}