react-stupid-grid
v1.0.8
Published
Just a stupid mobile-first-only, React, fractional grid, made with flexbox.
Downloads
6
Readme
react-stupid-grid
Just a stupid mobile-first-only, React, fractional grid, made with flexbox.
Installation
yarn add react-stupid-grid
Usage
import { Col, Row } from 'react-stupid-grid'
// ...
<Row gutter="30px">
<Col default="1/1">A</Col>
<Col default="1/1" tablet="1/2">B</Col>
<Col default="1/1" tablet="1/2" desktop="1/3">C</Col>
</Row>
// ...