.cobalt- {
  &ComposedFormField {
    @include form-field-container;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;

    & > * + * {
      @apply c-ml-sm;
    }
  }
}

@include breakpoint($until: sm) {
  .cobalt-ComposedFormField > * + * {
    @apply c-ml-xs;
  }
}
