Ever since doing work on responsive sites, I've become very used to defining my column widths inside media querys...
Eg.
@media (min-width: @screen-sm-min) {
#main-header {
.make-xs-column(12)
}
}
@media (min-width: @screen-md-min) {
#main-header {
.make-xs-column(6)
}
}
But, now that we have xs/sm/md/lg column mixins inside Boostrap 3, this seems like the wrong way to do things. I'm almost inclined to make a separate LESS file for actual column widths, which would mean just mean extending my CSS classes with these mixins with no need to actually wrap column width declarations inside media queries.
I hope this makes sense? I'm coming into the framework from a strange angle most likely!
Hows everyone else tackle this, my main concern is keeping code clean.
Thanks Phil