Using the tool on the website generates: ```scss @mixin text-crop(...) { // ... $dynamic-top-crop: max(($top-crop + ($line-height - $crop-line-height) * ($crop-font-size / 2)), 0) / $crop-font-size; $dynamic-bottom-crop: max(($bottom-crop + ($line-height - $crop-line-height) * ($crop-font-size / 2)), 0) / $crop-font-size; // ... ``` Using this code will generate: > `DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.` source: https://sass-lang.com/documentation/breaking-changes/slash-div Recommended is to _"...switch all division to use math.div() instead."_
Using the tool on the website generates:
Using this code will generate:
source: https://sass-lang.com/documentation/breaking-changes/slash-div
Recommended is to "...switch all division to use math.div() instead."