@use 'sass:math';

@function calc-em($pixels, $base: 14) {
  @return #{math.div($pixels, $base)}em;
}
