Layout
Output base layout styles (containers, flex layout utilities, etc)
Variables
$config
Variable Type: Map
Module Settings
$config: (
"containers" : true,
"container-nested-no-padding" : false,
"layout-flex" : true,
);
File Information
- File: _layout.scss
- Group: layout
- Type: variable
- Lines (comments): 11-15
- Lines (code): 17-21
Map Properties
Name | Type | Default | Description |
---|---|---|---|
containers | Boolean | true | Enables container styling. |
container-nested-no-padding | Boolean | false | Toggles whether nested receive horizontal padding or not. |
layout-flex | Boolean | true | Enables layout-flex styling. |
Mixins
set()
Mixin
Change modules $config
File Information
- File: _layout.scss
- Group: layout
- Type: mixin
- Lines (comments): 23-26
- Lines (code): 28-30
Examples
General example
@include ulu.base-layout-set(( "property" : value ));
Parameters
Name | Type | Description |
---|---|---|
$changes | Map |
Map of changes |
Require
styles()
Mixin
Output Layout Styles
File Information
- File: _layout.scss
- Group: layout
- Type: mixin
- Lines (comments): 41-41
- Lines (code): 43-104
Require
Functions
get()
Function
Get a config option
File Information
- File: _layout.scss
- Group: layout
- Type: function
- Lines (comments): 32-35
- Lines (code): 37-39
Examples
General example
@include ulu.base-layout-get("property");
Parameters
Name | Type | Description |
---|---|---|
$name | Map |
Name of property |