ganlanyuan / tiny-slider

Vanilla javascript slider for all purposes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecation Warning

hydr4x opened this issue · comments

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: --

commented

I think this should be fixed once #704 is merged. I hope the maintainer can do it soon.