add tooltip to sidebar buttons remove profile for admin fix mobile menu not opening in home page fix deal image input modal size in mobile view make image scrollable in input modal fix explore page filters are not clickable when recent search is maxed out change UI for the recent searches add seeder for categories improve deal card ui in broker dashboard
23 lines
739 B
JavaScript
23 lines
739 B
JavaScript
export function initNavMenu() {
|
|
const openBtn = document.getElementById('openBtn');
|
|
const closeBtn = document.getElementById('closeBtn');
|
|
const mobileMenu = document.getElementById('mobileMenu');
|
|
const body = document.body;
|
|
|
|
if (openBtn) {
|
|
openBtn.addEventListener('click', () => {
|
|
mobileMenu.classList.remove('translate-x-full');
|
|
mobileMenu.classList.add('translate-x-0');
|
|
body.style.overflow = 'hidden';
|
|
})
|
|
}
|
|
|
|
if (closeBtn) {
|
|
closeBtn.addEventListener('click', () => {
|
|
mobileMenu.classList.add('translate-x-full');
|
|
mobileMenu.classList.remove('translate-x-0');
|
|
body.style.overflow = 'visible';
|
|
})
|
|
}
|
|
}
|