diff --git a/webui/static/script.js b/webui/static/script.js index 7bc03e9d..0963e586 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -14229,16 +14229,11 @@ function createLibraryArtistCard(artist) { const stats = document.createElement("div"); stats.className = "library-artist-stats"; - if (artist.album_count > 0 || artist.track_count > 0) { - const albumStat = document.createElement("span"); - albumStat.className = "library-artist-stat"; - albumStat.textContent = `${artist.album_count} album${artist.album_count !== 1 ? "s" : ""}`; - + if (artist.track_count > 0) { const trackStat = document.createElement("span"); trackStat.className = "library-artist-stat"; trackStat.textContent = `${artist.track_count} track${artist.track_count !== 1 ? "s" : ""}`; - stats.appendChild(albumStat); stats.appendChild(trackStat); } diff --git a/webui/static/style.css b/webui/static/style.css index d5d64a62..93304761 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -8613,6 +8613,8 @@ body { justify-content: center; transform: scale(1); text-shadow: none; + padding-top: 30px; + padding-bottom: 30px; } .alphabet-btn:hover {