Skip to content

Commit e4fb51b

Browse files
committed
Fix loader screen z index issue
1 parent d9586ec commit e4fb51b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Loader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22

33
const Loader = () => {
44
return (
5-
<div className="flex space-x-2 w-full h-screen fixed inset-0 bg-zinc-700/50 z-30 justify-center items-center">
5+
<div className="flex space-x-2 w-full h-screen fixed inset-0 bg-zinc-700/50 z-50 justify-center items-center">
66
<div aria-label="Loading..." role="status">
77
<svg className="h-12 w-12 animate-spin" viewBox="3 3 18 18">
88
<path

0 commit comments

Comments
 (0)