Configuration
Default values
$asterix-conf: (
grid-columns-number: 12,
media-queries-default-media: all,
scope-vars-in-each-layout: true,
specifiers-default-attribute: data-spe,
verbose: false
) !default;Retrieve configuration
You can retrieve configuration setting with the --conf($property) function.
@if(--conf(verbose)){
@warn 'I am verbose.';
}Update configuration
The mixin --update-conf($updatedConf) will merge the map you provide with the current settings.
Updates should be made between the asterix's main @import and the call of the asterix() mixin.
Parameters
Last updated