mirror of https://github.com/franjsco/tick3t
fix responsive
This commit is contained in:
parent
a842301e7f
commit
17eedb94f5
|
@ -1,6 +1,5 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import {
|
import {
|
||||||
Container,
|
|
||||||
Row,
|
Row,
|
||||||
Col
|
Col
|
||||||
} from 'reactstrap';
|
} from 'reactstrap';
|
||||||
|
@ -18,18 +17,14 @@ class Home extends Component {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
|
||||||
<Container>
|
|
||||||
<Row>
|
<Row>
|
||||||
<Col className="col" xs="12" sm="6">
|
<Col sm="12" md="6">
|
||||||
<OpenTicketCard />
|
<OpenTicketCard />
|
||||||
</Col>
|
</Col>
|
||||||
<Col className="col" xs="12" sm="6">
|
<Col sm="12" md="6">
|
||||||
<ViewTicketCard />
|
<ViewTicketCard />
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
</Container>
|
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue