Html – My button moves when I click it. How do I fix that?
The pause/play button moves when I click it. How do I fix that? const btn = document.querySelector(".button"); if (btn === null) { throw new Error('could not find button'); } btn.addEventListener("click", function() { btn.classList.toggle("paused"); return false; }); :root { --pauseButtonhight: 16px;…