Skip to content

Commit

Permalink
[custom-font] fixes for CI lint to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgy Perepechko (merelj) committed Oct 4, 2020
1 parent b3836ca commit 0c42b30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ const Textarea = styled(TextareaAutosize)<ExampleTextProps>`
color: ${props => (props.theme.main === 'dark' ? '#fff' : '#14213d')};
background-color: transparent;
font-family: ${
props => (props.theme && props.theme.font ? props.theme.font : 'Roboto')};
props =>
props.theme && props.theme.font ? props.theme.font : 'Roboto'
};
font-size: ${props => (props.smallerFont ? '1.2em' : '1.61em')};
${props => (props.showCopyCursor ? 'cursor: text;' : '')};
Expand Down

0 comments on commit 0c42b30

Please sign in to comment.