made the snackbar prettier

pull/8/head
FlayInAHook 4 years ago
parent a93639b9dc
commit 5d10d57e50

@ -65,7 +65,7 @@ export class ProfileComponent implements OnInit {
.updateUser(user)
.subscribe(
data => {
this.snackBar.openSnackBar("Das Passwort wurde erfolgreich aktualisiert");
this.snackBar.openSnackBar("Das Passwort wurde erfolgreich aktualisiert", "Ok");
console.log(JSON.stringify(data));
},
(error) => {

@ -12,7 +12,7 @@ export class SnackBarService {
openSnackBar(message: string, action: string = "") {
this.snackBar.open(message, action, {
duration: 5000,
panelClass: ['mat-toolbar', 'mat-primary']
panelClass: ['mat-toolbar', 'mat-primary', 'simple-snack-bar']
});
}
}

@ -20,4 +20,8 @@ h1:before {
.mat-list-item-content {
width: 100%;
}
}
.simple-snack-bar .mat-simple-snackbar {
justify-content: center;
}
Loading…
Cancel
Save