mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #1498 from omnivore-app/fix/confirmation-z-index
Increase the z-index on the confirmation dialog so it can be displayed over modals
This commit is contained in:
commit
5fbe0f428b
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ export function ConfirmationModal(props: ConfirmationModalProps): JSX.Element {
|
|||
return (
|
||||
<ModalRoot defaultOpen onOpenChange={props.onOpenChange}>
|
||||
<ModalOverlay />
|
||||
<ModalContent css={{ bg: '$grayBg', maxWidth: '20em' }}>
|
||||
<ModalContent css={{ bg: '$grayBg', maxWidth: '20em', zIndex: '20' }}>
|
||||
<VStack alignment="center" distribution="center" css={{ p: '$2' }}>
|
||||
{props.icon ? props.icon : null}
|
||||
{props.richMessage ? (
|
||||
|
|
|
|||
Loading…
Reference in a new issue