@mixin cmfDialogStretched {
  .cmf-dialog {
    display: flex;
    flex-direction: column;
    height: 100%;

    &__footer {
      margin-top: auto;
    }
  }
}

@mixin cmfDialogButtonWithSpinner {
  [cmf-button]:has(mat-spinner) {
    display: flex;
    align-items: center;
  }

  mat-spinner {
    margin-left: 5px;
  }
}