Skip to content
Snippets Groups Projects
Commit bf9e93cd authored by Grant's avatar Grant
Browse files

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

parent f237d292
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ export const WelcomeModal = () => {
};
return (
<Modal isOpen={isOpen} onClose={handleClose}>
<Modal isOpen={isOpen} onClose={handleClose} isDismissable={false}>
<ModalContent>
{(onClose) => (
<>
......
......@@ -212,7 +212,7 @@ export const AppContext = ({ children }: PropsWithChildren) => {
}}
>
{!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..." />
</div>
)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment