@use './stack';

.Story.Mixins.stack {
  @include stack.stack(4);

  > * {
    background-color: yellow;
  }

  &--horizontal {
    @include stack.stack(6, $direction: horizontal);
  }
}
