Skip to content

Commit

Permalink
Improve text bg gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyEPhipps committed Oct 4, 2023
1 parent 40d1fba commit f3a5108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Molecules/Promo/Promo.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ const Copy = styled.div`
${({ hasVideo }) => hasVideo !== false && css`
background-color: rgba(0,0,0,0.75);
overflow: hidden;
box-shadow: 0px 0px 100px 100px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 75px 100px rgba(0, 0, 0, 0.75);
`}
${({ hasVideo, lightVideo }) => (hasVideo !== false && lightVideo) && css`
background-color: rgba(255, 255, 255, 0.75);
box-shadow: 0px 0px 100px 100px rgba(255, 255, 255, 0.75);
box-shadow: 0px 0px 100px 75px rgba(255, 255, 255, 0.75);
`}
}
Expand Down

0 comments on commit f3a5108

Please sign in to comment.