Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Improve eligible banner styles. (#2347)
Browse files Browse the repository at this point in the history
* Improve eligible banner styles.

* remove darken.
  • Loading branch information
fairlighteth authored Jan 28, 2022
1 parent 30ea2ec commit 8de580d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/custom/pages/Claim/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,8 @@ export const EligibleBanner = styled.div`
display: flex;
justify-content: center;
align-items: center;
background: ${({ theme }) => transparentize(0.9, theme.attention)};
color: ${({ theme }) => darken(0.1, theme.attention)};
background: ${({ theme }) => transparentize(0.9, theme.success)};
color: ${({ theme }) => theme.success};
margin: 0 auto 16px;
font-weight: 600;
Expand All @@ -719,7 +719,7 @@ export const EligibleBanner = styled.div`
height: 21px;
> path {
fill: ${({ theme }) => darken(0.1, theme.attention)};
fill: ${({ theme }) => theme.success};
}
${({ theme }) => theme.mediaWidth.upToSmall`
Expand Down

0 comments on commit 8de580d

Please sign in to comment.