Account for white bg images in top X sections

This commit is contained in:
Claudio Ortolina
2026-02-02 15:13:00 +00:00
parent 1486a37fda
commit 226cd76540
2 changed files with 2 additions and 2 deletions
@@ -114,7 +114,7 @@ defmodule MusicLibraryWeb.StatsLive.TopAlbums do
]} ]}
> >
<img <img
class="w-12 h-12 rounded-md object-cover" class="w-12 h-12 rounded-md shadow-sm object-cover"
src={cover_url(album)} src={cover_url(album)}
alt={album.album_title} alt={album.album_title}
/> />
@@ -119,7 +119,7 @@ defmodule MusicLibraryWeb.StatsLive.TopArtists do
> >
<.artist_image <.artist_image
:if={artist.musicbrainz_id != ""} :if={artist.musicbrainz_id != ""}
class="w-12 h-12 rounded-md object-cover" class="w-12 h-12 rounded-md shadow-sm object-cover"
artist={artist} artist={artist}
width={96} width={96}
image_hash={artist.image_hash} image_hash={artist.image_hash}