TheRealBarenziah
4/12/2019 - 9:43 AM

Custom flexbox by David

.flex-row {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-between{
  justify-content: space-between;
}

.flex-around{
  justify-content: space-around;
}

.flex-center{
  justify-content: center;
}

.flex-align-items {
  align-items: center;
}