Skip to content

Commit 371f053

Browse files
committed
Merge branch 'preview'
2 parents 219ccee + 59ab3d0 commit 371f053

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/[server]/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ const Overview = () => {
3939
}, [balance, showInfo]);
4040

4141
return (
42-
<div className="overflow-y-auto h-[calc(100vh-56px)]">
43-
<div className="max-w-6xl pt-12 pb-16 px-4 mx-auto space-y-14">
42+
<div className="overflow-y-auto h-[calc(100vh-56px)] flex flex-col">
43+
<div className="max-w-6xl pt-12 pb-16 px-4 mx-auto space-y-14 flex-1">
4444
<div className="flex gap-8 flex-col lg:flex-row items-center lg:items-start">
4545
{!isLoggedIn ? (
4646
<Typography level="h3" fontWeight="lg" className="flex-1 pb-3">
@@ -158,7 +158,7 @@ const Overview = () => {
158158
</div>
159159
)}
160160
</div>
161-
<div
161+
{/* <div
162162
className={clsx("grid grid-cols-1 mx-auto gap-4", {
163163
"md:grid-cols-2": stakingPools.length >= 2,
164164
"lg:grid-cols-3": stakingPools.length >= 3,
@@ -173,7 +173,7 @@ const Overview = () => {
173173
{stakingPools.some((each) => each.type === "nft") && (
174174
<NFTCard hidden={isLoggedIn && !showInfo} />
175175
)}
176-
</div>
176+
</div> */}
177177
</div>
178178
<Footer />
179179
</div>

0 commit comments

Comments
 (0)