Skip to content

Commit

Permalink
Fixes overflow issues on join network dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Nov 27, 2018
1 parent ae954af commit e41459c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/app/components/token-input/token-input.component.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.checkbox {
padding-bottom: 0.8em;
padding-bottom: 1.1rem;
}

.form {
min-height: 5rem;
}
2 changes: 1 addition & 1 deletion src/app/components/token-input/token-input.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div fxLayout="row" [formGroup]="form">
<div fxLayout="row" [formGroup]="form" class="form">
<mat-form-field fxLayout="column" fxFlex="1 1 auto" [hideRequiredMarker]="true">
<input matInput type="number"
[placeholder]="placeholder"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export class TokenNetworkComponent implements OnInit, OnDestroy {
};

const joinDialogRef = this.dialog.open(JoinDialogComponent, {
width: '400px',
width: '480px',
data: payload
});

Expand Down

0 comments on commit e41459c

Please sign in to comment.