Skip to content

Commit

Permalink
reduce brightness of the overlay background to increase contrast for …
Browse files Browse the repository at this point in the history
…readability
  • Loading branch information
cemms1 committed Nov 1, 2024
1 parent 4184e3f commit aebe143
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dotcom-rendering/src/components/FeatureCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ const overlayStyles = css`
flex-direction: column;
justify-content: flex-start;
flex-grow: 1;
padding: 8px;
row-gap: 8px;
backdrop-filter: blur(12px);
padding: ${space[2]}px;
row-gap: ${space[2]}px;
backdrop-filter: blur(12px) brightness(0.7);
`;

const getMedia = ({
Expand Down

0 comments on commit aebe143

Please sign in to comment.