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
Showing with 5 additions and 3 deletions
+5 -3
......@@ -73,9 +73,11 @@
@include make-col-auto();
}
@for $i from 1 through $grid-row-columns {
.row-cols#{$infix}-#{$i} {
@include row-cols($i);
@if $grid-row-columns > 0 {
@for $i from 1 through $grid-row-columns {
.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