change z-indexes and disable overlay dismissing welcome modal (fixes #50)
This commit is contained in:
parent
f237d292be
commit
bf9e93cd18
|
@ -26,7 +26,7 @@ export const WelcomeModal = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal isOpen={isOpen} onClose={handleClose}>
|
<Modal isOpen={isOpen} onClose={handleClose} isDismissable={false}>
|
||||||
<ModalContent>
|
<ModalContent>
|
||||||
{(onClose) => (
|
{(onClose) => (
|
||||||
<>
|
<>
|
||||||
|
|
|
@ -212,7 +212,7 @@ export const AppContext = ({ children }: PropsWithChildren) => {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{!config && (
|
{!config && (
|
||||||
<div className="fixed top-0 left-0 w-full h-full z-[9999] backdrop-blur-sm bg-black/30 text-white flex items-center justify-center">
|
<div className="fixed top-0 left-0 w-full h-full z-[49] backdrop-blur-sm bg-black/30 text-white flex items-center justify-center">
|
||||||
<Spinner label="Loading..." />
|
<Spinner label="Loading..." />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in New Issue