Skip to content

Commit

Permalink
how to use - example
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmeAld committed Mar 30, 2021
1 parent e932d80 commit c88ee60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/HomePage/styles.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from 'styled-components';

export const Container = styled('div')`
background: #fff;
background: ${({ theme }) => theme.colors.white};
font-family: 'Poppins', sans-serif;
`;

Expand Down Expand Up @@ -108,7 +108,7 @@ export const LogoText = styled('p')`
`;

export const InfoCard = styled('div')`
background-color: #04102f;
background-color: ${({ theme }) => theme.colors.black[700]};
border-radius: 1rem;
color: #fff;
margin-top: 5rem;
Expand Down

0 comments on commit c88ee60

Please sign in to comment.