Skip to content

Commit

Permalink
SUM-262 SUM-264 SUM-266: fixes to the 4px white border
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbreese committed Dec 16, 2024
1 parent 3fb0bca commit 2758629
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/global/page-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const PageHeader = async () => {
</div>
</div>
<GlobalMessage />
<div className="relative bg-fog-light">
<div className="relative border-4 border-white bg-fog-light">
<div className="w-full border-b-2 lg:border-b-0">
<div className="min-h-50 rs-py-2 centered pr-24 lg:pr-0">
<div className="flex w-full justify-between">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const BannerParagraph = ({paragraph, eagerLoadImage, ...props}: Props) => {
<BannerWrapper
{...props}
aria-labelledby={paragraph.suBannerHeader ? paragraph.id : undefined}
className="relative left-1/2 !mt-0 flex w-screen -translate-x-1/2 flex-col @container md:min-h-[400px] lg:block"
className="relative left-1/2 !mt-0 flex w-screen -translate-x-1/2 flex-col border-t-4 border-t-white @container md:min-h-[400px] lg:block"
>
{hasCard && (
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const SumTestimonialBannerParagraph = ({paragraph, ...props}: Props) => {
<article
{...props}
className={twMerge(
"relative left-1/2 !mt-0 grid w-screen -translate-x-1/2 @container lg:grid-cols-3",
"relative left-1/2 !mt-0 grid w-screen -translate-x-1/2 border-t-4 border-t-white @container lg:grid-cols-3",
props.className
)}
aria-labelledby={paragraph.id}
Expand Down

0 comments on commit 2758629

Please sign in to comment.