2. sds-flex()
Add Flexbox to projects using Sipster's sds-flex() mixin.
Flex Property
Options
@include sds-flex($justify, $align, $direction);Example:
// $direction not specified, so defaults to `row`
.customClass {
@include sds-flex (center, center);
}
// specifying $direction as `column`
.anotherClass {
@include sds-flex(flex-end, center, column);
}Compiled CSS:
Last updated