studiometa / scss-toolkit

A small and configurable SCSS Toolkit to boost your project! 🚀
MIT License
5 stars 0 forks source link

Improve the typography configuration #23

Closed titouanmathis closed 5 years ago

titouanmathis commented 5 years ago

Proposal to improve the typography configuration:

$type-fonts: (
  serif: (
    name: Georgia, // Used in the @font-face declaration
    stack: 'Georgia, sans-serif', // Used in the font-family declaration
    webfonts: (
      (
        filename: 'georgia-regular',
        weight: 400,
        style: normal,
      ),
      // ...
    ),
  ),
  sans-serif: (
    name: Arial,
    stack: 'Arial, sans-serif',
    webfonts: (
      (
        filename: 'arial-regular',
        weight: 400,
        style: normal,
      ),
      // ...
    ),
  ),  
) !default;
titouanmathis commented 5 years ago

Will fix #13 🎉