(Fix) info-grid: only add offset to second row in wide variation

This commit is contained in:
0xfff 2016-09-28 01:21:41 +02:00
parent 50cd9687f3
commit 2e0769b04f

View file

@ -60,7 +60,9 @@ $m: 'info-grid';
&--wide {
.#{$m}__item {
@extend .col-sm-5;
@extend .col-sm-offset-1;
&:nth-child(2n) {
@extend .col-sm-offset-1;
}
}
}