Skip to content

Commit

Permalink
Update Card.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
abeddow91 authored Oct 28, 2024
1 parent e2cb2ef commit 4074a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotcom-rendering/src/components/Card/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ export const Card = ({
const getGapSize = (): GapSize => {
if (isOnwardContent) return 'none';
if (hasBackgroundColour) return 'tiny';
if (!!isFlexSplash || imageSize === 'jumbo') return 'small';
if (!!isFlexSplash || (isFlexibleContainer && imageSize === 'jumbo')) return 'small';
if (isSmallCard) return 'medium';
if (
isFlexibleContainer &&
Expand Down

0 comments on commit 4074a12

Please sign in to comment.