fix regression on round ItemCard

This commit is contained in:
jeffvli
2025-12-28 03:23:57 -08:00
parent 99be12e648
commit 66699b9572
2 changed files with 4 additions and 2 deletions
@@ -56,7 +56,9 @@
}
.image-container.is-round {
border-radius: 50%;
&::before {
border-radius: 50%;
}
}
.favorite-badge {
+1 -1
View File
@@ -81,7 +81,7 @@ export function BaseImage({
{...props}
/>
) : !src ? (
<ImageUnloader icon={unloaderIcon} />
<ImageUnloader className={className} icon={unloaderIcon} />
) : (
<ImageLoader className={className} />
)}