Skip to content

Commit

Permalink
fixed search form layout
Browse files Browse the repository at this point in the history
  • Loading branch information
hwellmann committed Aug 1, 2024
1 parent 22272ae commit 8083a99
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/app/component/search/search.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
</mat-expansion-panel-header>
<form>
<mat-form-field class="query">
<input matInput name="query" type="text" [(ngModel)]="query" placeholder="Tune number or part of title">
<mat-label>Tune number or part of title</mat-label>
<input matInput name="query" type="text" [(ngModel)]="query">
</mat-form-field>
<mat-form-field class="rhythm">
<input matInput name="rhythm" type="text" [(ngModel)]="rhythm" placeholder="Rhythm">
<mat-label>Rhythm</mat-label>
<input matInput name="rhythm" type="text" [(ngModel)]="rhythm">
</mat-form-field>
<mat-form-field class="key">
<input matInput name="key" type="text" [(ngModel)]="key" placeholder="Key">
<mat-label>Key</mat-label>
<input matInput name="key" type="text" [(ngModel)]="key">
</mat-form-field>
<mat-form-field class="tunebooks">
<mat-label>Tune books</mat-label>
Expand All @@ -21,7 +24,8 @@
</mat-select>
</mat-form-field>
<mat-form-field class="tags">
<input matInput name="tags" type="text" [(ngModel)]="tags" placeholder="Tags">
<mat-label>Tags</mat-label>
<input matInput name="tags" type="text" [(ngModel)]="tags">
</mat-form-field>
<mat-action-row>
<button mat-raised-button (click)="findTunes()" label="Search" class="search-button"
Expand Down

0 comments on commit 8083a99

Please sign in to comment.