diff --git a/src/styles/_grid.scss b/src/styles/_grid.scss index 3ddf7955..10fee339 100644 --- a/src/styles/_grid.scss +++ b/src/styles/_grid.scss @@ -42,8 +42,10 @@ // Добавляем классы для смещения колонок @for $i from 0 through $grid-columns - 1 { - .offset#{$infix}-#{$i} { - @include make-col-offset($i, $grid-columns); + @if $i > 0 { + .offset#{$infix}-#{$i} { + @include make-col-offset($i, $grid-columns); + } } } }