Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
CooperEdmunds committed Dec 24, 2018
1 parent 28383bd commit bff115a
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions src/pages/ChainsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,28 +93,26 @@ export default class HomePage extends Component {

return (
<Container>
<Row className="my-5 mx-auto justify-content-center">
<Col className="col-5">
<Row className="my-3 mx-auto justify-content-center">
<Col className="mb-5 col-10 col-md-5">
<SmartField
isMulti={false}
labelTitle={"First team"}
placeholder={"Duke"}
placeholder={""}
choices={this.state.teams}
onChangeHandler={this.teamAHandler}
/>
</Col>
<Col className="col-5">
<Col className="mb-5 col-10 col-md-5">
<SmartField
isMulti={false}
labelTitle={"Second team"}
placeholder={"UNC"}
placeholder={""}
choices={this.state.teams}
onChangeHandler={this.teamBHandler}
/>
</Col>
</Row>
<Row className="my-4 justify-content-center">
<Col className="col-8">
<Col className="col-12 col-md-8">
<SmartField
isMulti={true}
labelTitle={"Teams to exclude:"}
Expand All @@ -125,12 +123,8 @@ export default class HomePage extends Component {
</Col>
</Row>
<Row className="my-4 justify-content-center">
<Col className="col-2">
<Button
className="btn-block"
color="secondary"
onClick={this.submit}
>
<Col className="text-center">
<Button className="" color="secondary" onClick={this.submit}>
Find Chains!
</Button>
</Col>
Expand Down

0 comments on commit bff115a

Please sign in to comment.