Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 808 Bytes

justify-self.md

File metadata and controls

31 lines (24 loc) · 808 Bytes

Justify self

Class reference

Class Properties
.justify-self-auto justify-self: auto;
.justify-self-start justify-self: flex-start;
.justify-self-end justify-self: flex-end;
.justify-self-center justify-self: center;
.justify-self-stretch justify-self: stretch;

Install separately

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

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-self: (
  'auto': auto,
  'start': flex-start,
  'end': flex-end,
  'center': center,
  'stretch': stretch,
)