Skip to content

Commit

Permalink
unfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bboc committed Apr 30, 2024
1 parent d53efbe commit 253d398
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/_sass/bootstrap-4.6.2/vendor/_rfs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
//
// Licensed under MIT (https://github.com/twbs/rfs/blob/v8.x/LICENSE)

@use "sass:math";

// Configuration

// Base font size
Expand Down Expand Up @@ -53,8 +51,8 @@ $rfs-base-font-size-unit: unit($rfs-base-font-size);

@function divide($dividend, $divisor, $precision: 10) {
$sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
$dividend: math.abs($dividend);
$divisor: math.abs($divisor);
$dividend: abs($dividend);
$divisor: abs($divisor);
@if $dividend == 0 {
@return 0;
}
Expand Down

0 comments on commit 253d398

Please sign in to comment.