From 3ef4138901bfb716129cce3818848c5456afb5db Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 19 Dec 2025 00:53:12 -0800 Subject: [PATCH] fix artifact card image dimensions --- src/lib/components/collection/CollectionArtifactCard.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/collection/CollectionArtifactCard.svelte b/src/lib/components/collection/CollectionArtifactCard.svelte index 6b77b990..f0872035 100644 --- a/src/lib/components/collection/CollectionArtifactCard.svelte +++ b/src/lib/components/collection/CollectionArtifactCard.svelte @@ -85,8 +85,8 @@ } .artifact-image { - width: 100%; - height: 100%; + width: 104px; + height: 104px; object-fit: contain; border-radius: $item-corner; }