Skip to content

Commit 7006c68

Browse files
dlkakbsclaude
andcommitted
Fix stat grid overflow: switch from 4-col to 2x2 layout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d2a370e commit 7006c68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/app/pools/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function PoolCard({ poolId }: { poolId: number }) {
6464
</div>
6565

6666
{/* Stats */}
67-
<div style={{ display: "grid", gridTemplateColumns: "repeat(4,1fr)", gap: 10 }}>
67+
<div style={{ display: "grid", gridTemplateColumns: "repeat(2,1fr)", gap: 10 }}>
6868
{[
6969
{ label: "Locked", value: `${parseFloat(formatEther(pool.totalStake)).toFixed(2)} USDC`, color: "#fff" },
7070
{ label: "Bonus pool", value: `${parseFloat(formatEther(pool.bonusPool)).toFixed(2)} USDC`, color: "#6ee7b7" },

0 commit comments

Comments
 (0)