Skip to content

Commit

Permalink
removed unnecessary zIndex (keystonejs#4028)
Browse files Browse the repository at this point in the history
Co-authored-by: Gautam Singh <[email protected]>
Co-authored-by: Jed Watson <[email protected]>
  • Loading branch information
3 people authored Oct 25, 2020
1 parent d78a8b6 commit 90c022c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions design-system/packages/fields/src/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export function Select({
return (
<ReactSelect
value={value}
css={{ zIndex: 3, width: tokens.width }}
css={{ width: tokens.width }}
styles={styles}
onChange={value => {
if (!value) {
Expand Down Expand Up @@ -153,7 +153,7 @@ export function MultiSelect({

return (
<ReactSelect
css={{ zIndex: 3, width: tokens.width }}
css={{ width: tokens.width }}
styles={styles}
value={value}
onChange={value => {
Expand Down

0 comments on commit 90c022c

Please sign in to comment.