From a19883ac752ee53cba32b659206597bdea3bfa15 Mon Sep 17 00:00:00 2001 From: Sanne de Vries <65487235+sanne-san@users.noreply.github.com> Date: Fri, 1 Sep 2023 09:20:17 +0200 Subject: [PATCH] Fixed signup and header card split layout bug on frontend (#17916) No ref --- ghost/core/core/frontend/src/cards/css/header_v2.css | 1 + ghost/core/core/frontend/src/cards/css/signup.css | 1 + 2 files changed, 2 insertions(+) diff --git a/ghost/core/core/frontend/src/cards/css/header_v2.css b/ghost/core/core/frontend/src/cards/css/header_v2.css index fecfff3640..24945e67a7 100644 --- a/ghost/core/core/frontend/src/cards/css/header_v2.css +++ b/ghost/core/core/frontend/src/cards/css/header_v2.css @@ -93,6 +93,7 @@ /* Split layout image */ .kg-header-card-content .kg-header-card-image { + width: 100%; /* this will force the image to follow the signup card height */ height: 0; min-height: 100%; diff --git a/ghost/core/core/frontend/src/cards/css/signup.css b/ghost/core/core/frontend/src/cards/css/signup.css index aac6106454..7ed0622c74 100644 --- a/ghost/core/core/frontend/src/cards/css/signup.css +++ b/ghost/core/core/frontend/src/cards/css/signup.css @@ -86,6 +86,7 @@ /* Split layout image */ .kg-signup-card-content .kg-signup-card-image { + width: 100%; /* this will force the image to follow the signup card height */ height: 0; min-height: 100%;