Browse Source

add placeholder "add to schedule" button

pull/26/head
Jason Dove 6 years ago
parent
commit
444cc3548c
  1. 9
      ErsatzTV/Pages/TelevisionSeasons.razor

9
ErsatzTV/Pages/TelevisionSeasons.razor

@ -12,10 +12,15 @@ @@ -12,10 +12,15 @@
<MudCardMedia Image="@($"/posters/{_show.Poster}")" Style="height: 440px; width: 304px;"/>
</MudPaper>
<MudCardContent>
<div style="display: flex; flex-direction: column;">
<div style="display: flex; flex-direction: column; height: 100%">
<MudText Typo="Typo.h3">@_show.Title</MudText>
<MudText Typo="Typo.subtitle1" Class="mb-6 mud-text-secondary">@_show.Year</MudText>
<MudText>@_show.Plot</MudText>
<MudText Style="flex-grow: 1">@_show.Plot</MudText>
<div>
<MudButton Variant="Variant.Filled" Color="Color.Primary" StartIcon="@Icons.Material.Filled.Add" Disabled="true">
Add To Schedule
</MudButton>
</div>
</div>
</MudCardContent>
</div>

Loading…
Cancel
Save