viewy 2.0.6

A web UI toolkit that combine the advantages of a design system and an ui library.
.stack {
  display: flex;
  &--vertical {
    flex-direction: column;

  }
  &--horizontal {
    flex-direction: row;
  }

  &--align-start {
    align-items: flex-start;
  }
  &--align-center {
    align-items: center;
  }
  &--align-end {
    align-items: flex-end;
  }
  &--align-stretch {
    align-items: stretch;
  }

}