leejordan/reflex

Set order of grid elements for breakpoints

Closed this issue · 2 comments

I would like to see a breakpoint option for ordering grid elements.

.grid--order-<breakpoint>-<n>

Not possible by now, or am I missing something? Thx!

FYI: I added this as temporary solution:

@media (min-width: $breakpoint_sm) {  
    .grid--order-sm-12 {  
        -ms-flex-order: 12;  
        -webkit-order: 12;  
        order: 12;  
    }  
    …
}

I'm trying to keep this library as focused and lightweight as possible. As you've discovered it's easy enough to extend it to add this sort of thing.