SCSS Framework (Beta)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
242 B

8 months ago
  1. @function rem($pixel, $basis: 16) {
  2. $negative: false;
  3. @if ($pixel < 0) {
  4. $negative: true;
  5. $pixel: calc($pixel * -1);
  6. }
  7. $rem: calc($pixel / $basis);
  8. @if ($negative) {
  9. $rem: calc($rem * -1);
  10. }
  11. @return $rem + 0rem;
  12. }