JavaScriptのscrollIntoViewのスムーズスクロールは設定により効かないことがある

<button id="topLink">ページの最後のボタンに遷移</button>

<!-- ボタンは離れている -->

<button id="bottomLink">ページの最初のボタンに遷移</button>
const topLink = document.getElementById('topLink')
const bottomLink = document.getElementById('bottomLink')

topLink.addEventListener('click', () => {
  bottomLink.scrollIntoView({ behavior: 'smooth' })
})

bottomLink.addEventListener('click', () => {
  topLink.scrollIntoView({ behavior: 'smooth' })
})