Commit 9d009701 authored by Catalin Zalog's avatar Catalin Zalog Committed by XhmikosR
Browse files

Backport #30606 (#30612)

checks for `$grid-row-columns`
parent 4853c5b5
Showing with 5 additions and 3 deletions
+5 -3
...@@ -35,9 +35,11 @@ ...@@ -35,9 +35,11 @@
max-width: 100%; max-width: 100%;
} }
@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