fix(menu): dynamic overflow hidden on documentElement
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
036c11ef5c
commit
6ba5bb0cf7
1 changed files with 2 additions and 0 deletions
|
@ -46,9 +46,11 @@
|
|||
const nav_button = document.getElementById("navi-toggle")
|
||||
nav_button.addEventListener("change", event => {
|
||||
if (event.target.checked) {
|
||||
document.documentElement.style.overflow = "hidden";
|
||||
document.body.style.overflow = "hidden";
|
||||
}
|
||||
if (!event.target.checked) {
|
||||
document.documentElement.overflow = "initial";
|
||||
document.body.style.overflow = "initial";
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue