@mixin prutech-snack-bar-theme($theme) {
  $background: map-get($theme, background);

  // TODO replace this and use a real snackbar
  .mat-snack-bar-container {
    padding: 0px !important;
  }

  .warn-snackbar {
    background-color: #BD362F;;
    color: white;
    border-radius: 4px;
    padding: 10px;
    height: 100%;
    .display-message {
      white-space: pre-wrap;
    }
    .mat-simple-snackbar-action {
      color: mat-color($primary, dialog);
    }
    .mat-icon {
      height: auto;
      vertical-align: middle;
      margin-right: 10px;
    }
  }

  .success-snackbar {
    background-color: #51A351;
    color: white;
    border-radius: 4px;
    padding: 10px;
    height: 100%;
    .display-message {
      white-space: pre-wrap;
    }
    .mat-simple-snackbar-action {
      color: mat-color($primary, dialog);
    }
    .mat-icon {
      height: auto;
      vertical-align: middle;
      margin-right: 10px;
    }
  }
}
