Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 923 Bytes

justify-content.md

File metadata and controls

33 lines (26 loc) · 923 Bytes

Justify content

Class reference

Class Properties
.justify-start justify-content: flex-start;
.justify-end justify-content: flex-end;
.justify-center justify-content: center;
.justify-between justify-content: space-between;
.justify-around justify-content: space-around;
.justify-evenly justify-content: space-evenly;

Install separately

@import '~scssfold/src/modules/flex/justify-content';

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-justify-content: (
  'start': flex-start,
  'end': flex-end,
  'center': center,
  'between': space-between,
  'around': space-around,
  'evenly': space-evenly
) !default;