mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Set zIndex on modals so they display above the top toolbar on smaller screens
This commit is contained in:
parent
a5b9fd6089
commit
e4c89c0256
1 changed files with 2 additions and 2 deletions
|
|
@ -42,7 +42,7 @@ export function HighlightsModal(props: HighlightsModalProps): JSX.Element {
|
|||
event.preventDefault()
|
||||
props.onOpenChange(false)
|
||||
}}
|
||||
css={{ overflow: 'auto', px: '24px' }}
|
||||
css={{ overflow: 'auto', px: '24px', zIndex: '10' }}
|
||||
>
|
||||
<VStack distribution="start" css={{ height: '100%' }}>
|
||||
<ModalTitleBar title="Notebook" onOpenChange={props.onOpenChange} />
|
||||
|
|
@ -112,7 +112,7 @@ function ModalHighlightView(props: ModalHighlightViewProps): JSX.Element {
|
|||
|
||||
return (
|
||||
<>
|
||||
<VStack css={{ maxHeight: '80%' }}>
|
||||
<VStack>
|
||||
<SpanBox css={{ marginLeft: 'auto' }}>
|
||||
<Dropdown
|
||||
triggerElement={
|
||||
|
|
|
|||
Loading…
Reference in a new issue