Преглед изворни кода

Fix `Dropdown` list appearing behind modal

This makes the `Dropdown` unusable if there's a modal with a greater
z-index than the Dropdown's.
Sergiu Miclea пре 8 година
родитељ
комит
4c6955e1a0
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/components/molecules/Dropdown/Dropdown.jsx

+ 1 - 1
src/components/molecules/Dropdown/Dropdown.jsx

@@ -44,7 +44,7 @@ const List = styled.div`
   width: ${props => getWidth(props)}px;
   border: 1px solid ${Palette.grayscale[3]};
   border-radius: ${StyleProps.borderRadius};
-  z-index: 10;
+  z-index: 1000;
 `
 const ListItems = styled.div`
   max-height: 400px;