This is the default template for this library. It has no output unless you configure it to.
Forwards the package's config, tokens, and library.
Optionally, in a configuration file, config.scss:
@forward 'pkg:@maddimathon/utility-sass/template/config' with (
...
);
Optionally, in a tokens file, tokens.scss:
@forward 'pkg:@maddimathon/utility-sass/template/tokens' with (
...
);
In your main stylesheet, index.scss:
@forward 'config'; // if applicable
@forward 'tokens'; // if applicable
@forward 'pkg:@maddimathon/utility-sass/template';
// your styles
In your partials, */*.scss:
@use 'config'; // if applicable
@use 'tokens'; // if applicable
@use 'pkg:@maddimathon/utility-sass'; // if applicable, for functions,mixins, etc.
// your styles