Skip to content

Commit f76971f

Browse files
committed
chore(dashboard): fix explorer navigation
1 parent 7fce08a commit f76971f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/apps/app-dashboard/src/components/explorer/wrappers/AppExploreWrapper.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ export const AppExploreWrapper = () => {
1313
// Loading states
1414
if (isLoading) {
1515
return (
16-
<div className="w-full relative z-10">
16+
<div className="w-full relative">
1717
<ExplorerNav />
18-
<div className="min-h-screen flex items-center justify-center">
18+
<div
19+
className="flex items-center justify-center"
20+
style={{ minHeight: 'calc(100vh - 200px)', paddingTop: '4rem' }}
21+
>
1922
<LoadingLock />
2023
</div>
2124
</div>

0 commit comments

Comments
 (0)