Skip to content

Commit

Permalink
fix(example): adjust styles to display spinner correctly (#1203)
Browse files Browse the repository at this point in the history
  • Loading branch information
eranshmil authored and brandonroberts committed Jul 29, 2018
1 parent 91cc6ed commit 4a0b580
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example-app/app/books/components/book-search.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ import { Component, Output, Input, EventEmitter } from '@angular/core';
.mat-form-field {
min-width: 300px;
margin-right: 10px; // Make room for the spinner
}
.mat-spinner {
position: relative;
top: 10px;
left: 10px;
opacity: 0;
padding-left: 60px; // Make room for the spinner
visibility: hidden;
}
.mat-spinner.show {
opacity: 1;
visibility: visible;
}
`,
],
Expand Down

0 comments on commit 4a0b580

Please sign in to comment.