123456789101112 |
- @charset "UTF-8";
- @use "sass:math";
-
- $browser-context: 16; // Default
-
- @function em($pixels, $context: $browser-context) {
- @return #{math.div($pixels, $context)}em;
- }
-
- @function rem($pixels, $context: $browser-context) {
- @return #{math.div($pixels, $context)}rem;
- }
|