JustifyContent.scss 227 B

123456
  1. // Justify Content
  2. @each $s, $l in normal normal, start flex-start, end flex-end, center center, between space-between, around space-around, evenly space-evenly, stretch stretch{
  3. .justify-#{$s} {
  4. justify-content: #{$l};
  5. }
  6. }