Grid resizing with Bourbon Neat and selectors. Requires http://bourbon.io and http://neat.bourbon.io
// 481 and up
.gallery {
li {
@include span-columns(6);
&:nth-child(2n) {
margin-right: 0;
}
}
}
// 768 and up
.gallery {
li {
@include span-columns(4);
&:nth-child(2n) {
margin-right: 2.35765% !important;
}
&:nth-child(3n) {
margin-right: 0 !important;
}
}
}