@mixin flex {
  display: flex;
}

@mixin flex-row() {
  @include flex;
  flex-direction: row;
  align-items: center;
}

@mixin flex-column {
  @include flex;
  flex-direction: column;
  align-items: center;
}

@mixin flex-end {
  align-self: flex-end;
}

@mixin flex-between {
  justify-content: space-between;
}

@mixin flex-center {
  justify-content: center;
}

@mixin flex-around {
  justify-content: space-around;
}

@mixin flex-baseline {
  align-items: baseline;
}

@mixin flex-auto {
  flex: auto;
}

@mixin flex-none {
  flex: none;
}

@mixin flex-wrap {
  flex-wrap: wrap;
}
