/* Display utilities including flexbox */
/* The format of these should match Tailwind */

.flex {
  display: flex;
}

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

.flex-1 {
  flex: 1;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

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

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

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

.gap-xx-small {
  gap: var(--space--xx-small);
}

.gap-x-small {
  gap: var(--space--x-small);
}

.gap-small {
  gap: var(--space--small);
}

.gap-base {
  gap: var(--space--base);
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-large {
  gap: var(--space--large);
}
