Skip to content

Commit 11e7a41

Browse files
committed
fix: remove excessive min-height gap in staking product cards
The Chakra→Tailwind migration translated `minHeight={75}` directly to `min-h-75`, which resolves to ~300px (75 × 0.25rem) and reserved a large empty gap below the platform/UI badges in every staking product card. Grid layout already equalizes card heights and `mt-auto` keeps the footer aligned, so no min-height is needed.
1 parent bd4fc9a commit 11e7a41

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Staking/StakingProductsCardGrid/StakingProductCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export const StakingProductCard = ({
178178
)}
179179
</div>
180180
</div>
181-
<div className="flex min-h-75 flex-wrap items-start gap-1 p-6 pt-0">
181+
<div className="flex flex-wrap items-start gap-1 p-6 pt-0">
182182
{platforms.map((platform, idx) => (
183183
<StakingBadge type="platform" key={idx}>
184184
{platform}

0 commit comments

Comments
 (0)