mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-22 06:00:07 +03:00
fix(devui): increase z-index of select menu to appear above editor
This commit is contained in:
parent
5fb8f02add
commit
3552b5017d
|
@ -73,6 +73,10 @@ export class Select<
|
||||||
borderColor: props.theme.colors.neutral10,
|
borderColor: props.theme.colors.neutral10,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
|
menu: (base) => ({
|
||||||
|
...base,
|
||||||
|
zIndex: 10,
|
||||||
|
}),
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -128,7 +128,7 @@ export default class TestTab<S, A extends Action<unknown>> extends Component<
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
<Toolbar>
|
<Toolbar>
|
||||||
<div style={{ flexGrow: 1, zIndex: 10 }}>
|
<div style={{ flexGrow: 1 }}>
|
||||||
<Select
|
<Select
|
||||||
options={templates}
|
options={templates}
|
||||||
getOptionValue={(template: Template) => template.name!}
|
getOptionValue={(template: Template) => template.name!}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user