-
Notifications
You must be signed in to change notification settings - Fork 204
Closed
Labels
Description
In flexboxgrid.css reordering props like first or last are concerned to use with Cols. Here it can be used only with rows.
Row.propTypes = {
reverse: PropTypes.bool,
start: ModificatorType,
center: ModificatorType,
end: ModificatorType,
top: ModificatorType,
middle: ModificatorType,
bottom: ModificatorType,
around: ModificatorType,
between: ModificatorType,
first: ModificatorType,
last: ModificatorType,
className: PropTypes.string,
tagName: PropTypes.string,
children: PropTypes.node
};In this case I can't do something like that:
<div class="row">
<div class="col-xs-2">
<div class="box">
1
</div>
</div>
<div class="col-xs-2">
<div class="box">
2
</div>
</div>
<div class="col-xs-2 first-xs">
<div class="box">
3
</div>
</div>
</div>djensen47