fix responsive

This commit is contained in:
frab1t 2019-05-08 16:23:30 +02:00
parent a842301e7f
commit 17eedb94f5
1 changed files with 2 additions and 7 deletions

View File

@ -1,6 +1,5 @@
import React, { Component } from 'react';
import {
Container,
Row,
Col
} from 'reactstrap';
@ -18,18 +17,14 @@ class Home extends Component {
render() {
return (
<div>
<Container>
<Row>
<Col className="col" xs="12" sm="6">
<Col sm="12" md="6">
<OpenTicketCard />
</Col>
<Col className="col" xs="12" sm="6">
<Col sm="12" md="6">
<ViewTicketCard />
</Col>
</Row>
</Container>
</div>
);
}
}