Small fixes
This commit is contained in:
parent
b0057192c4
commit
e2aa9a30ce
|
@ -25,6 +25,10 @@ const { getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
|||
<a href={getLocalizedUrl(`/collectibles/${doc.value.slug}`)}>
|
||||
<slot />
|
||||
</a>
|
||||
) : doc.relationTo === Collections.Pages ? (
|
||||
<a href={getLocalizedUrl(`/pages/${doc.value.slug}`)}>
|
||||
<slot />
|
||||
</a>
|
||||
) : (
|
||||
<ErrorMessage
|
||||
title={`Unknown internal link: ${doc.relationTo}`}
|
||||
|
|
|
@ -37,7 +37,7 @@ const { image, title, subtitle, href } = Astro.props;
|
|||
transition: 100ms scale;
|
||||
|
||||
&:hover {
|
||||
scale: 102%;
|
||||
scale: 105%;
|
||||
}
|
||||
|
||||
& > div {
|
||||
|
|
Loading…
Reference in New Issue