Sass deprecation warning: Using `/` for division is deprecated
Created by: btakita
dart-sass has deprecated /
in favor of math.div
. Compiling https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss now results with many sass warnings.
368 │ $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
│ ^^^^^^^^^^^^^^^^^^^^^^
╵
node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss 368:43 @import
DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
Recommendation: math.div($grid-gutter-width, 2)
More info and automated migrator: https://sass-lang.com/d/slash-div