From f8fb0b092d93a70350ee55fd8e7b0872aeec3d34 Mon Sep 17 00:00:00 2001 From: "rayane-d (via MelvinBot)" Date: Thu, 21 May 2026 13:47:18 +0000 Subject: [PATCH] Add explicit height to SAML illustration container The blue illustration area on the SAML settings page was 190px instead of the expected 220px because the illustrationContainerStyle lacked an explicit height, causing it to auto-size to the inner illustration's 190px height. Adding cardSectionIllustrationContainer (which sets height: sectionIllustrationHeight = 220) to the style array ensures the outer blue area is 220px while keeping the SVG at 218x190. Co-authored-by: rayane-d --- src/pages/domain/DomainSamlPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/domain/DomainSamlPage.tsx b/src/pages/domain/DomainSamlPage.tsx index 751e5d2de146..e217d78276b8 100644 --- a/src/pages/domain/DomainSamlPage.tsx +++ b/src/pages/domain/DomainSamlPage.tsx @@ -159,7 +159,7 @@ function DomainSamlPage({route}: DomainSamlPageProps) { illustrationBackgroundColor={colors.blue700} illustration={illustrations.LaptopOnDeskWithCoffeeAndKey} illustrationStyle={styles.emptyStateSamlIllustration} - illustrationContainerStyle={[styles.emptyStateCardIllustrationContainer, styles.justifyContentCenter]} + illustrationContainerStyle={[styles.emptyStateCardIllustrationContainer, styles.justifyContentCenter, styles.cardSectionIllustrationContainer]} titleStyles={styles.textHeadlineH1} /> )}