Skip to content

Commit

Permalink
Fix/hamburger overlapped by map (OWASP#525)
Browse files Browse the repository at this point in the history
* fixed-overlapping-issue

* fixed map zoom problem
  • Loading branch information
yashgoyal0110 authored Jan 17, 2025
1 parent f60cd18 commit 3e76159
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/src/components/ChapterMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ const ChapterMap = ({ geoLocData }) => {
}
}, [geoLocData])

return <div id="chapter-map" className="rounded-2xl" style={{ height: '400px', width: '100%' }} />
return (
<div
id="chapter-map"
className="rounded-2xl"
style={{ height: '400px', width: '100%', zIndex: '0' }}
/>
)
}

export default ChapterMap

0 comments on commit 3e76159

Please sign in to comment.