Deprecation Warning
hydr4x opened this issue · 1 comments
hydr4x commented
Issue description:
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.
Recommendation: math.div(100% * $count, $perpage) or calc(100% * $count / $perpage)
width: (100% * $count / $perpage);
node_modules/tiny-slider/src/tiny-slider.scss 124:13 @import
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.
Recommendation: math.div(100%, $count) or calc(100% / $count)
width: (100% / $count);
node_modules/tiny-slider/src/tiny-slider.scss 136:15 @import
Could you add calc before brackets above?
Demo link/slider setting:
Tiny-slider version: "tiny-slider": "^2.9.4"
Browser name && version: --
OS name && version: --