Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
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.

10 lines
166 B

7 years ago
  1. /**
  2. * add font-size with fallback
  3. *
  4. * @param {px} $font-size
  5. *
  6. */
  7. @mixin fontSize($font-size) {
  8. font-size: $font-size;
  9. font-size: pxToRem($font-size);
  10. }