Merge pull request #57 from antsanchez/bugfix_mobile_menu

Fix: Hide mobile menu on button click
This commit is contained in:
BLZR
2024-03-28 20:17:28 +05:30
committed by GitHub

View File

@ -55,6 +55,7 @@ const toggleMobileMenu = () => {
} else {
mobileMenu.style.animationName = 'bounceOutRight';
mobileMenu.style.webkitAnimationName = 'bounceOutRight'
mobileMenu.style.display = 'none';
mobileMenuVisible = false;
}
}