Unverified Commit 6b5f055a authored by Catalin Zalog's avatar Catalin Zalog Committed by GitHub
Browse files

feat: checks for `$grid-row-columns` (#30606)

parent 3ff3680d
1 merge request!31948Examples/Floating-labels: fix bad behavior with autofill
Showing with 5 additions and 3 deletions
+5 -3
...@@ -73,9 +73,11 @@ ...@@ -73,9 +73,11 @@
@include make-col-auto(); @include make-col-auto();
} }
@for $i from 1 through $grid-row-columns { @if $grid-row-columns > 0 {
.row-cols#{$infix}-#{$i} { @for $i from 1 through $grid-row-columns {
@include row-cols($i); .row-cols#{$infix}-#{$i} {
@include row-cols($i);
}
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment