feat: added background to loading

This commit is contained in:
Nevo David 2025-07-26 21:58:36 +07:00
parent 850c0614ee
commit 672d55400d
1 changed files with 5 additions and 1 deletions

View File

@ -480,7 +480,11 @@ export const LaunchesComponent = () => {
}
}, []);
if (isLoading || reload) {
return <LoadingComponent />;
return (
<div className="bg-newBgColorInner p-[20px] flex flex-1 flex-col gap-[15px] transition-all items-center justify-center">
<LoadingComponent />
</div>
);
}
// @ts-ignore