ITL utility_classes

ITL utility_classes

Source: _layout.scss, line 184

4.4 Spacing

@mixin space-between @mixin space-around

  • .space-between: justify-content: space-between
  • .space-around: justify-content: space-around

Example

<div class="space-between bg-eee">
<button class="button">cta1</button><button class="button">cta2</button><button class="button">cta3</button>
</div>
<div class="space-around bg-gray">
<button class="button">cta1</button><button class="button">cta2</button><button class="button">cta3</button>
</div>