mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-21 21:49:55 +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,
|
||||
},
|
||||
}),
|
||||
menu: (base) => ({
|
||||
...base,
|
||||
zIndex: 10,
|
||||
}),
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -128,7 +128,7 @@ export default class TestTab<S, A extends Action<unknown>> extends Component<
|
|||
return (
|
||||
<Container>
|
||||
<Toolbar>
|
||||
<div style={{ flexGrow: 1, zIndex: 10 }}>
|
||||
<div style={{ flexGrow: 1 }}>
|
||||
<Select
|
||||
options={templates}
|
||||
getOptionValue={(template: Template) => template.name!}
|
||||
|
|
Loading…
Reference in New Issue
Block a user