Output all o-spacing features.
@include oSpacing($opts: (
'margin-bottom-utilities': true, // Output CSS classes such as `o-spacing-s1`.
'custom-properties': true // Output CSS variables.
));
Outputs all available features and styles for stepped progress.
The output includes the .o-stepped-progress
class definition as well as class definitions for every available theme.
All stepped progress styles
@include oSteppedProgress();
Base styles with 'heavy' theme
@include oSteppedProgress((
'themes': (
'heavy'
)
));
When true output relative rem
space values, not px
.
Relative spaces will respect the browser's configured font size.
For legacy reasons, this defaults to false
(outputs px units).
Projects may need to be updated to support relative units.
Output all o-spacing features.
@include oSpacing($opts: (
'margin-bottom-utilities': true, // Output CSS classes such as `o-spacing-s1`.
'custom-properties': true // Output CSS variables.
));