Skip to content

Commit

Permalink
fix: devidate with math.div
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-berlin authored Aug 8, 2022
1 parent c3058f9 commit 27c236c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/_numbers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@error '❌ ===> #{$number} is not a number';
}

@return $number / ($number * 0 + 1);
@return math.div($number, ($number * 0 + 1));
}

/// Invert a number.
Expand Down

0 comments on commit 27c236c

Please sign in to comment.