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

Commit

Permalink
feat(NewsletterWidget): invert button colors
Browse files Browse the repository at this point in the history
  • Loading branch information
CanRau committed Nov 24, 2018
1 parent 60b118f commit d390b43
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/NewsletterWidget/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,12 @@ export class Newsletter extends Component {
disabled={isSubmitting}
css={{
...styles.button,
background: colors.purpleDark,
color: colors.darkWhite,
background: colors.primaryLite,
color: colors.white,
'&:hover': {
background: colors.purpleDark,
color: colors.darkWhite,
},
}}
>
{isSubmitting ? (
Expand Down

0 comments on commit d390b43

Please sign in to comment.