From c7855b2f89045774a5a410f23c0639d4ca808f66 Mon Sep 17 00:00:00 2001 From: Sol Date: Fri, 19 Jun 2026 15:57:34 +0000 Subject: [PATCH 1/5] fix(TextBanner): set content-wrapper vertical padding to 24px mobile/tablet and 32px desktop Co-Authored-By: Claude Opus 4.8 (1M context) --- src/patterns/TextBanner/_textBanner.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/patterns/TextBanner/_textBanner.scss b/src/patterns/TextBanner/_textBanner.scss index e96613a2b..ebb19e63b 100644 --- a/src/patterns/TextBanner/_textBanner.scss +++ b/src/patterns/TextBanner/_textBanner.scss @@ -14,7 +14,7 @@ flex-direction: column; justify-content: space-between; max-width: none; - padding: $spacing-lg 0; + padding: 24px 0; h1 { white-space: nowrap; @@ -33,6 +33,7 @@ @include media($breakpoint-md) { flex-direction: row; + padding-block: 32px; h1, p, From 14d4186a519d1ab0b38802c18f2bcbd674f8143c Mon Sep 17 00:00:00 2001 From: Alexander Dietrich Date: Wed, 1 Jul 2026 14:26:58 -0400 Subject: [PATCH 2/5] chore(TextBanner): use spacing tokens for vertical padding --- src/patterns/TextBanner/_textBanner.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/patterns/TextBanner/_textBanner.scss b/src/patterns/TextBanner/_textBanner.scss index ebb19e63b..c1a4cbf66 100644 --- a/src/patterns/TextBanner/_textBanner.scss +++ b/src/patterns/TextBanner/_textBanner.scss @@ -14,7 +14,7 @@ flex-direction: column; justify-content: space-between; max-width: none; - padding: 24px 0; + padding: $spacing-lg 0; h1 { white-space: nowrap; @@ -33,7 +33,7 @@ @include media($breakpoint-md) { flex-direction: row; - padding-block: 32px; + padding-block: $spacing-xl; h1, p, From d3415342865514b6c55f5eecef1578f019a9f043 Mon Sep 17 00:00:00 2001 From: Alexander Dietrich Date: Wed, 1 Jul 2026 14:32:02 -0400 Subject: [PATCH 3/5] chore(TextBanner): document custom vertical padding values --- src/patterns/TextBanner/_textBanner.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/patterns/TextBanner/_textBanner.scss b/src/patterns/TextBanner/_textBanner.scss index c1a4cbf66..a8eb44cdc 100644 --- a/src/patterns/TextBanner/_textBanner.scss +++ b/src/patterns/TextBanner/_textBanner.scss @@ -14,7 +14,8 @@ flex-direction: column; justify-content: space-between; max-width: none; - padding: $spacing-lg 0; + // No legacy spacing token maps to the requested 24px vertical padding. + padding: 24px 0; h1 { white-space: nowrap; @@ -33,7 +34,8 @@ @include media($breakpoint-md) { flex-direction: row; - padding-block: $spacing-xl; + // No legacy spacing token maps to the requested 32px vertical padding. + padding-block: 32px; h1, p, From ef3a38372225c63a5e66e2749bd16cfb1503cd53 Mon Sep 17 00:00:00 2001 From: Alexander Dietrich Date: Wed, 1 Jul 2026 15:09:31 -0400 Subject: [PATCH 4/5] Revert "chore(TextBanner): document custom vertical padding values" This reverts commit d3415342865514b6c55f5eecef1578f019a9f043. --- src/patterns/TextBanner/_textBanner.scss | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/patterns/TextBanner/_textBanner.scss b/src/patterns/TextBanner/_textBanner.scss index a8eb44cdc..c1a4cbf66 100644 --- a/src/patterns/TextBanner/_textBanner.scss +++ b/src/patterns/TextBanner/_textBanner.scss @@ -14,8 +14,7 @@ flex-direction: column; justify-content: space-between; max-width: none; - // No legacy spacing token maps to the requested 24px vertical padding. - padding: 24px 0; + padding: $spacing-lg 0; h1 { white-space: nowrap; @@ -34,8 +33,7 @@ @include media($breakpoint-md) { flex-direction: row; - // No legacy spacing token maps to the requested 32px vertical padding. - padding-block: 32px; + padding-block: $spacing-xl; h1, p, From ef930b28486992d8a7936641436df702836169fd Mon Sep 17 00:00:00 2001 From: Alexander Dietrich Date: Wed, 1 Jul 2026 15:09:31 -0400 Subject: [PATCH 5/5] Revert "chore(TextBanner): use spacing tokens for vertical padding" This reverts commit 14d4186a519d1ab0b38802c18f2bcbd674f8143c. --- src/patterns/TextBanner/_textBanner.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/patterns/TextBanner/_textBanner.scss b/src/patterns/TextBanner/_textBanner.scss index c1a4cbf66..ebb19e63b 100644 --- a/src/patterns/TextBanner/_textBanner.scss +++ b/src/patterns/TextBanner/_textBanner.scss @@ -14,7 +14,7 @@ flex-direction: column; justify-content: space-between; max-width: none; - padding: $spacing-lg 0; + padding: 24px 0; h1 { white-space: nowrap; @@ -33,7 +33,7 @@ @include media($breakpoint-md) { flex-direction: row; - padding-block: $spacing-xl; + padding-block: 32px; h1, p,