diff --git a/app/assets/stylesheets/functions/pow.scss b/app/assets/stylesheets/functions/pow.scss new file mode 100644 index 000000000..68f297677 --- /dev/null +++ b/app/assets/stylesheets/functions/pow.scss @@ -0,0 +1,5 @@ +@use "sass:math"; + +@function pow($base, $exponent, $prec: 16) { + @return math.pow($base, $exponent); +}