Reputation: 333
I'm using google-map-react, and my problem is that dropMenu element is hidden under map im my app. How can I change it ??
Upvotes: 0
Views: 50
Reputation: 1037
You can try this
<div className="dropdown-menu />
.dropdown-menu {
position: relative; /* or absolute */
z-index: 1000;
}
Upvotes: 1