From eb2f6802fd14310639f3d0b8c2b9ba3f5cec84a4 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 5 May 2026 14:27:55 -0300 Subject: [PATCH] Fix: button always pinned to bottom of card regardless of content height --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 2e436be..16b56bc 100644 --- a/index.html +++ b/index.html @@ -1249,6 +1249,8 @@ border-radius: 24px; overflow: hidden; background: var(--card); + display: flex; + flex-direction: column; } .news-card-image { @@ -1260,8 +1262,7 @@ .news-card-body { display: flex; flex-direction: column; - justify-content: space-between; - min-height: 210px; + flex: 1; padding: 20px; background: var(--lift); }