Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 757 Bytes

align-items.md

File metadata and controls

31 lines (24 loc) · 757 Bytes

Align items

Class reference

Class Properties
.items-start align-items: flex-start;
.items-end align-items: flex-end;
.items-center align-items: center;
.items-baseline align-items: baseline;
.items-stretch align-items: stretch;

Install separately

@import '~scssfold/src/modules/flex/align-items';

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-align-items: (
  'start': flex-start,
  'end': flex-end,
  'center': center,
  'baseline': baseline,
  'stretch': stretch
);