@use "sass:math";

@use "../variables";
@use "strip-unit" as *;

@function rem($pixels, $base-font-size: variables.$base-font-size) {
  @if not(math.is-unitless($pixels)) {
    @error "rem: $pixels should be a unitless number, '#{$pixels}' given.";
  }

  @return math.div($pixels, strip-unit($base-font-size)) + 0rem;
}
