react-flexbox-grid icon indicating copy to clipboard operation
react-flexbox-grid copied to clipboard

Support for start='xs', end='xs' on Col (not just row)

Open iiAtlas opened this issue 7 years ago • 1 comments

New react-flexbox-grid user but really enjoying the lib so far!

Currently the below does not work:

<Col xs={3} start="xs">
    <span className="EventCard-price">$42</span>
</Col>

but manually adding the class achieves the desired result:

<Col xs={3} className="start-xs">
    <span className="EventCard-price">$42</span>
</Col>

The same is true for end-xs, is this by design?

iiAtlas avatar Jan 14 '18 01:01 iiAtlas

I, too, would appreciate this feature. Love this library, thanks for the work!

soodoh avatar Mar 13 '18 01:03 soodoh