Fix responsive box

This commit is contained in:
Francesco Esposito 2019-04-16 12:53:26 +02:00
parent 149d264603
commit 00409ac11a
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ class Box extends Component {
</Col> </Col>
</Row> </Row>
<Row> <Row>
<Col xs="6" md="6"> <Col xs="6">
<Button <Button
className="button" className="button"
color="danger" color="danger"
@ -38,7 +38,7 @@ class Box extends Component {
STOP STOP
</Button> </Button>
</Col> </Col>
<Col xs="6" md="6"> <Col xs="6">
<Button <Button
className="button" className="button"
color="secondary" color="secondary"

View File

@ -135,7 +135,7 @@ class Timer extends Component {
</Col> </Col>
</Row> </Row>
<Row> <Row>
<Col md={{ size: 6, offset: 3 }}> <Col sm={{size: 10, offset: 1}} md={{size: 8, offset: 2}} lg={{ size: 6, offset: 3 }}>
<Box <Box
startTimer={this.startTimer} startTimer={this.startTimer}
stopTimer={this.stopTimer} stopTimer={this.stopTimer}