Khan / react-multi-select

A multiple select component for React
MIT License
184 stars 97 forks source link

z-index of dropdown causing issues #51

Open clmcdonald opened 5 years ago

clmcdonald commented 5 years ago

The dropdown z-index is set to 1. I have other elements on my page that are set higher than that, and thus they are displayed on top of the dropdown, which is undesirable. Ideally, this should be exposed in a way that makes it easy to override. For now, my work-around was to add the following to my CSS to override it:

.dropdown-content {
    z-index: 3 !important;
}
susmithachava commented 2 years ago

@clmcdonald Is this issue resolved for you ? If so how ?