Update upload splash

This commit is contained in:
Serkan Reis
2023-02-13 19:58:45 +03:00
parent e83df5ee67
commit 007c0127ad
3 changed files with 13 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
export const BadgeLoadingModal = () => {
return (
<div
className="flex overflow-hidden fixed top-0 right-0 bottom-0 left-0 z-50 flex-col justify-center items-center w-full h-screen bg-gray-900 opacity-80"
style={{ margin: 0 }}
>
<img alt="Pixel Logo" className="mb-5 w-[50px] h-[50px] animate-spin" src="/icon.svg" />
<p className="w-1/3 font-bold text-center text-white">Uploading the image for badge creation, please wait...</p>
</div>
)
}