roylee0704 / react-flexbox-grid

A set of React components implementing flexboxgrid with the power of CSS Modules.

Home Page:http://roylee0704.github.io/react-flexbox-grid/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

default props on xs, sm, md, lg

eduardoinnorway opened this issue · comments

You should have default value to 12 on all sizes, else you need to write all the props all the time.

<Col lg={6}>foo</Col>

This should automatically give you xs, sm, md = 12.

How it is today, the Col becomes a div with inline-block on the not set props, and it looks strange when expecting responsive layout.