Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
agragregra committed Aug 21, 2023
1 parent 55746e8 commit 9d07b36
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/libs/bootstrap/scss/vendor/_rfs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ $rfs-base-value-unit: unit($rfs-base-value);

@function divide($dividend, $divisor, $precision: 10) {
$sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
$dividend: abs($dividend);
$divisor: abs($divisor);
$dividend: math.abs($dividend);
$divisor: math.abs($divisor);
@if $dividend == 0 {
@return 0;
}
Expand Down
2 changes: 2 additions & 0 deletions app/sass/main.sass
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use 'sass:math'

@import "vars"
@import "fonts"
@import "libs"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"author": "WebDesign Master",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.29.1",
"browser-sync": "^2.29.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean": "^0.4.0",
Expand All @@ -21,6 +21,6 @@
"gulp-rsync": "0.1.0",
"gulp-sass": "^5.1.0",
"gulp-uglify-es": "^3.0.0",
"sass": "^1.62.1"
"sass": "^1.66.1"
}
}

0 comments on commit 9d07b36

Please sign in to comment.