Swap body (base-100) and cards idle (base-200); cards hover (base-300) matches navbar

This commit is contained in:
2026-07-03 13:12:58 +02:00
parent cb30e9b6db
commit 8d9a3d20bc
3 changed files with 4 additions and 4 deletions
@@ -1,5 +1,5 @@
{#if entries.isEmpty()}
<div class="card bg-base-100 shadow-xl p-12 text-center">
<div class="card bg-base-200 shadow-xl p-12 text-center">
<p class="text-lg text-base-content/60">No releases found</p>
<p class="text-sm text-base-content/40 mt-2">Add artists to your collection to see their releases here</p>
</div>
@@ -7,7 +7,7 @@
<div class="flex flex-col gap-6">
{#for entry in entries}
<a href="https://musicbrainz.org/release-group/{entry.mbid}" target="_blank" rel="noopener noreferrer"
class="card card-side bg-base-100 border border-base-300 hover:bg-base-200 transition-colors shadow-sm overflow-hidden">
class="card card-side bg-base-200 border border-base-300 hover:bg-base-300 transition-colors shadow-sm overflow-hidden">
<figure class="w-64">
<img src="https://coverartarchive.org/release-group/{entry.mbid}/front-250"
alt="{entry.title}" class="object-cover w-full h-full"