Minor fixes in docs

old
Javi Velasco 2016-08-07 21:13:58 +02:00
parent 714883c1b2
commit 25fd5e2c3e
3 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@
.logo {
width: $appbar-logo-size;
height: $appbar-logo-size;
margin-top: ($appbar-height - $appbar-logo-size) / 2;
fill: $color-primary-contrast;
}

View File

@ -94,7 +94,7 @@ $content-width: 740px;
margin: 0 $unit;
}
.twitter {
color: $twitter-color;
color: $twitter-color !important;
}
}
> p {

View File

@ -13,7 +13,7 @@ class InputTest extends React.Component {
<Input type='text' multiline label='Multiline' maxLength={20} value={this.state.multiline} onChange={this.handleChange.bind(this, 'multiline')} />
<Input type='email' label='Email address' icon='email' value={this.state.email} onChange={this.handleChange.bind(this, 'email')} />
<Input type='tel' label='Phone' name='phone' icon='phone' value={this.state.phone} onChange={this.handleChange.bind(this, 'phone')} />
<Input type='text' value={this.state.hint} label='Required Field' hint='With Hint' required onChange={this.handleChange.bind(this, 'hint')} icon={<span>J</span>} />
<Input type='text' value={this.state.hint} label='Required Field' hint='With Hint' required onChange={this.handleChange.bind(this, 'hint')} icon='share' />
</section>
);
}