_IdentityForm.scss 428 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
@mixin identityForm() {
  .esri-identity-form {
    display: flex;
    flex-flow: column;
  }
  .esri-identity-form__group {
    margin-bottom: $cap-spacing;
  }
  .esri-identity-form__label {
    display: flex;
    flex-flow: column;
  }
  .esri-identity-form__footer {
    display: flex;
    justify-content: space-between;
    margin-top: $cap-spacing;
  }
}

@if $include_IdentityForm == true {
  @include identityForm();
}