Browse Source

fix poster width (#138)

pull/139/head
Jason Dove 5 years ago committed by GitHub
parent
commit
d249e95f12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ErsatzTV/Pages/Movie.razor
  2. 2
      ErsatzTV/Pages/TelevisionEpisodeList.razor
  3. 2
      ErsatzTV/Pages/TelevisionSeasonList.razor

2
ErsatzTV/Pages/Movie.razor

@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
@if (!string.IsNullOrWhiteSpace(_movie.Poster))
{
<img class="mud-elevation-2 mr-6"
style="border-radius: 4px; max-height: 440px"
style="border-radius: 4px; max-height: 440px; flex-shrink: 0"
src="@($"/artwork/posters/{_movie.Poster}")" alt="movie poster"/>
}
<div style="display: flex; flex-direction: column; height: 100%">

2
ErsatzTV/Pages/TelevisionEpisodeList.razor

@ -29,7 +29,7 @@ @@ -29,7 +29,7 @@
@if (!string.IsNullOrWhiteSpace(_season.Poster))
{
<img class="mud-elevation-2 mr-6"
style="border-radius: 4px; max-height: 440px"
style="border-radius: 4px; max-height: 440px; flex-shrink: 0"
src="@($"/artwork/posters/{_season.Poster}")" alt="show poster"/>
}
<div style="display: flex; flex-direction: column; height: 100%">

2
ErsatzTV/Pages/TelevisionSeasonList.razor

@ -27,7 +27,7 @@ @@ -27,7 +27,7 @@
@if (!string.IsNullOrWhiteSpace(_show.Poster))
{
<img class="mud-elevation-2 mr-6"
style="border-radius: 4px; max-height: 440px"
style="border-radius: 4px; max-height: 440px; flex-shrink: 0"
src="@($"/artwork/posters/{_show.Poster}")" alt="show poster"/>
}
<div style="display: flex; flex-direction: column; height: 100%">

Loading…
Cancel
Save