Skip to content

Commit

Permalink
feat(theme): theme on Footer
Browse files Browse the repository at this point in the history
use themes on Footer component
  • Loading branch information
mateusfg7 committed Aug 31, 2020
1 parent 9872b69 commit 0c9b50b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ export const FooterSection = styled.footer`
padding: 15px;
background-color: rgba(255, 255, 255, 0.1);
background: ${(props) => props.theme.colors.footer.background};
backdrop-filter: blur(4px);
p {
a {
text-decoration: none;
color: white;
color: ${(props) => props.theme.colors.footer.text};
}
}
Expand Down

0 comments on commit 0c9b50b

Please sign in to comment.