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/colour'; // replaces 'sass:color'
@use 'pkg:@maddimathon/utility-sass/list'; // replaces 'sass:list'
@use 'pkg:@maddimathon/utility-sass/map'; // replaces 'sass:map'
@use 'pkg:@maddimathon/utility-sass/math'; // replaces 'sass:math'
@use 'pkg:@maddimathon/utility-sass/meta'; // replaces 'sass:meta'
@use 'pkg:@maddimathon/utility-sass/selector'; // replaces 'sass:selector'
@use 'pkg:@maddimathon/utility-sass/string'; // replaces 'sass:string'
@use 'pkg:@maddimathon/utility-sass/template' as lib;
// your styles