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.

22 lines
257 B

7 years ago
7 years ago
7 years ago
7 years ago
  1. @import
  2. '../functions/units';
  3. /**
  4. * font-size
  5. *
  6. *
  7. * @author Björn Hase
  8. *
  9. */
  10. /**
  11. * add font-size with fallback
  12. *
  13. * @param {px} $font-size
  14. *
  15. */
  16. @mixin font-size($font-size) {
  17. font-size: $font-size;
  18. font-size: pxToRem($font-size);
  19. }