Skip to content

Commit

Permalink
[custom-font] linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgy Perepechko (merelj) committed Oct 4, 2020
1 parent 8e9b6bf commit 1b78afe
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,7 @@ const Textarea = styled(TextareaAutosize)<ExampleTextProps>`
flex-grow: 1;
color: ${props => (props.theme.main === 'dark' ? '#fff' : '#14213d')};
background-color: transparent;
font-family: ${props => (props.theme && props.theme.font
? props.theme.font
: 'Roboto'
)};
font-family: ${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 1b78afe

Please sign in to comment.