fix(menu): don't disable overflow when menu open
All checks were successful
Deploy workflow / deploy (push) Successful in 29s
All checks were successful
Deploy workflow / deploy (push) Successful in 29s
This commit is contained in:
parent
2860b6cbbf
commit
9946d619ff
1 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue