This commit is contained in:
Sébastien André
2020-04-02 17:44:23 +02:00
parent 888903cef1
commit 4abcf4832f
2 changed files with 9 additions and 1 deletions

View File

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

View File

@@ -227,3 +227,8 @@ $altTheme: mat-dark-theme($theme-primary, $theme-accent, $theme-warn);
.mat-form-field { .mat-form-field {
width: 100%; width: 100%;
} }
.mat-dialog-container {
margin: 0px !important;
padding: 10px !important;
}