Skip to content

Commit

Permalink
fix(build): fix styled components errors (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandronanez committed Oct 24, 2017
1 parent df9555a commit aa22d8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/badge.component.js
Expand Up @@ -12,8 +12,8 @@ type Props = {

const BadgeContainer = styled.View`
flex: 1;
align-items: 'center';
justify-content: 'center';
align-items: center;
justify-content: center;
border-radius: 18;
width: 18;
height: 18;
Expand All @@ -24,7 +24,7 @@ const BadgeContainer = styled.View`

const BadgeText = styled.Text`
${{ ...fonts.fontPrimaryBold }};
background-color: 'transparent';
background-color: transparent;
${({ largeText }) =>
`font-size: ${largeText ? normalize(9.5) : normalize(7)};`};
`;
Expand Down

0 comments on commit aa22d8a

Please sign in to comment.