1
0
mirror of https://github.com/franjsco/tick3t synced 2025-06-05 22:19:18 +02:00

fix responsive

This commit is contained in:
frab1t
2019-05-08 16:23:30 +02:00
parent a842301e7f
commit 17eedb94f5

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>
);
}
}