Modifications du style des boutons et

des formulaires
This commit is contained in:
Sébastien André
2020-03-31 15:18:09 +02:00
parent 84b2947175
commit f9bf316a36
15 changed files with 85 additions and 39 deletions

View File

@@ -1,5 +1,5 @@
<div *ngIf="dataSourceTable != null else loading" class="table-container">
<button mat-button (click)="openDialogToAdd()" class="btn btn-primary">Add a drop zone</button>
<button mat-button (click)="openDialogToAdd()" mat-button>Add a drop zone</button>
<table mat-table [dataSource]="dataSourceTable">
<ng-container matColumnDef="isfavorite">

View File

@@ -73,6 +73,9 @@ export class ListOfDzsComponent implements OnInit {
}
openDialogToAdd() {
this.dialog.open(NewDropZoneComponent);
this.dialog.open(NewDropZoneComponent, {
height: "400px",
width: "600px"
});
}
}