SASS Reference

{{#if sass.variable}}

Variables

The default styles of this component can be customized using these Sass variables in your project's settings file.

{{#each sass.variable}} {{/each}}
Name Type Default Value Description
${{this.context.name}} {{formatSassTypes this.type}} {{styleSassValue this.context.value}} {{markdown this.description}}
{{/if}} {{#if sass.mixin}}

Mixins

Use the mixins to build your own component class structure out of our bonsai component.

{{#each sass.mixin}}

{{this.context.name}}

{{markdown this.description}}
{{writeSassMixin this}}
{{#if this.parameter}} {{#each this.parameter}} {{/each}}
Parameter Type Default Value Description
${{this.name}} {{formatSassTypes this.type}} {{styleSassValue this.default}} {{markdown this.description}}
{{/if}}

{{/each}}
{{/if}}