change z-indexes and disable overlay dismissing welcome modal (fixes #50)

This commit is contained in:
Grant 2024-06-18 17:00:11 -06:00
parent f237d292be
commit bf9e93cd18
2 changed files with 2 additions and 2 deletions

View File

@ -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) => (
<> <>

View File

@ -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>
)} )}