From 5161344ea44667a7ed13a1465f7c34665159f1a5 Mon Sep 17 00:00:00 2001 From: Bishtrahulsingh Date: Sun, 28 Sep 2025 11:20:28 +0530 Subject: [PATCH] fix(homepage): Correct layout of featured card The featured card for "Web Story Forms" was collapsing or displaying improperly, causing a visual disruption on the homepage as described in the issue. This commit applies a CSS width adjustment to the card container to ensure it maintains a stable layout, even if the associated image is slow to load or missing. Closes #6976 --- frontend21/scss/components/content/teaser.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend21/scss/components/content/teaser.scss b/frontend21/scss/components/content/teaser.scss index 396f6b0a066..191198af329 100644 --- a/frontend21/scss/components/content/teaser.scss +++ b/frontend21/scss/components/content/teaser.scss @@ -6,7 +6,7 @@ &-card { display: flex; flex-direction: column; - max-width: calc(100% - 10px); + width: calc(100% - 10px); white-space: normal; color: color('charade'); border-radius: 8px;