Skip to content

Commit

Permalink
Fix z-index for multiselect, again (#430)
Browse files Browse the repository at this point in the history
* context textarea was overlapping multiselect

* z-indexed the wrong thing
  • Loading branch information
thewatermethod authored Sep 20, 2021
1 parent 039fb14 commit fce6246
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/components/MultiSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ function MultiSelect({
return {
...provided,
outline,
zIndex: 2,
};
},
groupHeading: (provided) => ({
Expand Down Expand Up @@ -93,6 +92,10 @@ function MultiSelect({
marginRight: '4px',
}),
indicatorSeparator: () => ({ display: 'none' }),
menu: (provided) => ({
...provided,
zIndex: 2,
}),
};

/*
Expand Down

0 comments on commit fce6246

Please sign in to comment.