react-styled-flexboxgrid icon indicating copy to clipboard operation
react-styled-flexboxgrid copied to clipboard

Need "last" prop on Col

Open chrisbull opened this issue 7 years ago • 1 comments

Last property should be on the column to make the column move to the last position.

See example on http://flexboxgrid.com/ or:

<div class="row">
    <div class="col-xs-2 last-xs">
        <div class="box">
            1
        </div>
    </div>
    <div class="col-xs-2">
        <div class="box">
            2
        </div>
    </div>
    <div class="col-xs-2">
        <div class="box">
            3
        </div>
    </div>
</div>

chrisbull avatar May 29 '17 21:05 chrisbull

Hi! Yeah last feature could be cool! There is some other features from flexboxgrid that are not implemented yet. I don't have time for that at this moment but if you need this feature, feel free to try to implement it and propose a pull request ;)

LoicMahieu avatar Jun 01 '17 09:06 LoicMahieu