diff --git a/src/pages/[locale]/collectibles/[slug]/_components/ImageTile.astro b/src/pages/[locale]/collectibles/[slug]/_components/ImageTile.astro index a226eff..9206840 100644 --- a/src/pages/[locale]/collectibles/[slug]/_components/ImageTile.astro +++ b/src/pages/[locale]/collectibles/[slug]/_components/ImageTile.astro @@ -11,7 +11,6 @@ interface Props { title: string; subtitle: string; href: string; - class?: string | undefined; } const { @@ -19,13 +18,12 @@ const { title, subtitle, href, - ...otherProps } = Astro.props; --- {/* ------------------------------------------- HTML ------------------------------------------- */} - +
-

{title}

-

{subtitle}

+
+

{title}

+

{subtitle}

+
@@ -47,8 +47,47 @@ const { diff --git a/src/pages/[locale]/collectibles/[slug]/index.astro b/src/pages/[locale]/collectibles/[slug]/index.astro index 4e6e7e1..4f0db9d 100644 --- a/src/pages/[locale]/collectibles/[slug]/index.astro +++ b/src/pages/[locale]/collectibles/[slug]/index.astro @@ -179,7 +179,6 @@ if (price) { class:list={{ "when-no-print": true, "with-two": gallery && scans }}> {gallery && ( #gallery-scans { - &:not(.with-two) { - & > .collectibles_id-image_tile { - aspect-ratio: 2 / 1; - } - } - &.with-two { display: flex; gap: 24px; @media (max-width: 400.5px) { flex-direction: column; - - & > .collectibles_id-image_tile { - aspect-ratio: 2 / 1; - } } }