Skip to content
This repository was archived by the owner on Jul 14, 2023. It is now read-only.

Commit f9e349b

Browse files
Simon O'Harawhmii
authored andcommitted
Fix syntax error in a conditional statement in parse-columns
This addresses Issue #664 It is also similar to a previous attempt by @bizMD in PR #657
1 parent e5c90f9 commit f9e349b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/neat/functions/_neat-parse-columns.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
@if length($span) == 3 {
1717
$_total-columns: nth($span, 3);
1818
@return $_total-columns;
19-
} @else if length($span) == 2 or if length($span) >= 3 {
19+
} @else if (length($span) == 2) or (length($span) >= 3) {
2020
@error "`$column` should contain 2 values, seperated by an `of`";
2121
}
2222
}

0 commit comments

Comments
 (0)