_IdentityForm.scss 428 B

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