fix(ui): set high z-index on react-select dropdown menu

It's currently 1 which is the same as buttons on the calendar picker used in the silence form, dropdown needs to have higher value
This commit is contained in:
Łukasz Mierzwa
2018-10-05 22:44:17 +01:00
parent b60e2c854f
commit fb5c38b528

View File

@@ -76,6 +76,10 @@ const ReactSelectStyles = {
borderTopRightRadius: "0.25rem",
borderBottomRightRadius: "0.25rem"
}),
menu: (base, state) => ({
...base,
zIndex: 100
}),
option: (base, state) => ({
...base,
color: "inherit",