From 749427a078c3c19ee8c5f2900b2ab68483ba24f7 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 8 Oct 2024 22:59:13 +0300 Subject: [PATCH] offset-0 --- src/styles/_grid.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); + } } } }