poldeeek
poldeeek

Reputation: 333

Object hidden under Map [React]

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 ??

Screen: enter image description here enter image description here

Upvotes: 0

Views: 50

Answers (1)

Max Starling
Max Starling

Reputation: 1037

You can try this

<div className="dropdown-menu />
.dropdown-menu {
  position: relative; /* or absolute */
  z-index: 1000;
}

Upvotes: 1

Related Questions