bootstrap-colorpicker icon indicating copy to clipboard operation
bootstrap-colorpicker copied to clipboard

[BUG] Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.

Open simonschaufi opened this issue 3 years ago • 0 comments

Description

Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.

Recommendation: math.div($size, 2) or calc($size / 2)

More info and automated migrator: https://sass-lang.com/d/slash-div

   ╷
13 │   background-position: 0 0, $size/2 $size/2;
   │                                     ^^^^^^^
   ╵
    node_modules/bootstrap-colorpicker/src/sass/colorpicker.scss 13:37  bgCheckerBox()
    node_modules/bootstrap-colorpicker/src/sass/colorpicker.scss 213:3  @import

Context

  • bootstrap-colorpicker version: 2.4.0

Expected behavior

No deprecation warning

Use instead

Recommendation: math.div($size, 2) or calc($size / 2)

simonschaufi avatar Mar 18 '22 22:03 simonschaufi