Merge pull request #403 from ticky/use-system-fonts

Use system fonts on more platforms
This commit is contained in:
Eugen 2017-01-05 13:37:48 +01:00 committed by GitHub
commit 87f76d4095
9 changed files with 14 additions and 14 deletions

View file

@ -27,7 +27,7 @@ const Button = React.createClass({
render () {
const style = {
fontFamily: 'Roboto',
fontFamily: 'inherit',
display: this.props.block ? 'block' : 'inline-block',
width: this.props.block ? '100%' : 'auto',
position: 'relative',

View file

@ -38,7 +38,7 @@ const inputStyle = {
border: 'none',
padding: '10px',
paddingRight: '30px',
fontFamily: 'Roboto',
fontFamily: 'inherit',
background: '#282c37',
color: '#9baec8',
fontSize: '14px',