Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 629 Bytes

wrap.md

File metadata and controls

25 lines (19 loc) · 629 Bytes

Flex wrap

Class Properties
.flex-wrap flex-wrap: wrap;
.flex-wrap-reverse flex-wrap: wrap-reverse;
.flex-no-wrap flex-wrap: nowrap;

Install separately

@import '~scssfold/src/modules/flex/wrap';

Customizing

Override the following variable before including the module. Each key is used for the class name, and the value is used for the css property.

$scssfold-flex-wrap: (
  'wrap': wrap,
  'wrap-reverse': wrap-reverse,
  'no-wrap': nowrap,
);