Skip to content

Commit

Permalink
feat(Profile): corrects Paragraph font-size
Browse files Browse the repository at this point in the history
  • Loading branch information
newick committed May 1, 2020
1 parent 39a9cf2 commit b56c07c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/atoms/Paragraph/Paragraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from 'styled-components';

const Paragraph = styled.p`
margin: 0;
font-size: ${props => props.theme.fontSize};
font-size: ${props => props.theme.fontSizeDefault};
color: ${props => props.theme.textColor};
`;

Expand Down

0 comments on commit b56c07c

Please sign in to comment.