Fixed problem where the Library item thumbnail is too big on mobile

This commit is contained in:
DrMint 2022-03-06 03:48:24 +01:00
parent 0467813c2c
commit 3ab84b35da
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ export default function LibrarySlug(props: LibrarySlugProps): JSX.Element {
const contentPanel = (
<ContentPanel width={ContentPanelWidthSizes.large}>
<div className="grid place-items-center gap-12">
<div className="drop-shadow-shade-xl w-full h-[50vh] mobile:h-[80vh] mb-16 relative cursor-pointer">
<div className="drop-shadow-shade-xl w-full h-[50vh] mobile:h-[60vh] mb-16 relative cursor-pointer">
{item.thumbnail.data ? (
<Img
image={item.thumbnail.data.attributes}