refactor: get rid of deprecation warning

This commit is contained in:
Johannes Millan 2021-07-21 18:32:10 +02:00
parent ff23b5cfc0
commit c586231b45

View File

@ -1,4 +1,6 @@
@use "sass:math";
// because of the stupid upcoming sass migration
@function ddivide($a, $b) {
@return $a / $b;
@return math.div($a, $b);
}