fix(menu): don't disable overflow when menu open

This commit is contained in:
Matthieu Bessat 2024-03-15 20:28:30 +01:00
parent dcdde5a41c
commit 70d9b32db4

View file

@ -46,12 +46,16 @@
const nav_button = document.getElementById("navi-toggle") const nav_button = document.getElementById("navi-toggle")
nav_button.addEventListener("change", event => { nav_button.addEventListener("change", event => {
if (event.target.checked) { if (event.target.checked) {
/*
document.documentElement.style.overflow = "hidden"; document.documentElement.style.overflow = "hidden";
document.body.style.overflow = "hidden"; document.body.style.overflow = "hidden";
*/
} }
if (!event.target.checked) { if (!event.target.checked) {
document.documentElement.overflow = "initial"; /*
document.documentElement.style.overflow = "initial";
document.body.style.overflow = "initial"; document.body.style.overflow = "initial";
*/
} }
}) })
</script> </script>