_func.scss 269B

123456789101112
  1. @charset "UTF-8";
  2. @use "sass:math";
  3. $browser-context: 16; // Default
  4. @function em($pixels, $context: $browser-context) {
  5. @return #{math.div($pixels, $context)}em;
  6. }
  7. @function rem($pixels, $context: $browser-context) {
  8. @return #{math.div($pixels, $context)}rem;
  9. }