Improve form layout

This commit is contained in:
John Furrow
2016-06-02 22:29:13 -07:00
parent 2bb9112d13
commit 1c02bc492e
12 changed files with 92 additions and 60 deletions

View File

@@ -44,14 +44,16 @@ export default class AddTorrentsDestination extends React.Component {
return (
<div className="form__row">
<label className="form__label">
Destination
</label>
<input className={textboxClasses}
onChange={this.handleDestinationChange}
placeholder="Destination"
value={this.state.destination}
type="text" />
<div className="form__column">
<label className="form__label">
Destination
</label>
<input className={textboxClasses}
onChange={this.handleDestinationChange}
placeholder="Destination"
value={this.state.destination}
type="text" />
</div>
</div>
);
}