-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Applied layout fixes and style updates
- Loading branch information
Showing
5 changed files
with
36 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<mat-card id="audioPanel" class="audioPanel"> | ||
<div id="audioPanel" class="audioPanel"> | ||
<button class="closeBtn" (click)="close()">X</button> | ||
<div class="title">{{selectedEpisode.title}} </div><br/> | ||
<audio controls src="{{selectedEpisode.audio}}" type="audio/mpeg"></audio> | ||
</mat-card> | ||
<mat-card class="episodes"> | ||
</div> | ||
<div id="episodes" class="episodes"> | ||
<mat-card class="episodeCard" *ngFor="let episode of episodes" (click)="setSelected(episode)"> | ||
<mat-card-header></mat-card-header> | ||
<img mat-card-image src="{{episode.img}}"> | ||
<mat-card-footer> | ||
<mat-card-title> {{episode.number}} </mat-card-title> | ||
</mat-card-footer> | ||
</mat-card> | ||
</mat-card> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters