This commit is contained in:
Henrik Larsson 2023-08-14 11:00:16 +02:00
parent b80cbd8743
commit de85d266bd
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ export default function SearchModal() {
hitComponent={Hit}
classNames={{
root: 'flex flex-col flex-1 h-full overflow-auto pb-6',
list: 'mt-4 grid w-full grid-cols-1 overflow-auto gap-6'
list: 'mt-4 grid w-full grid-cols-1 overflow-auto gap-4'
}}
/>
</Search>

View File

@ -53,7 +53,7 @@ const BlurbSection = ({
<div
key={index}
className={`${
mobileLayout === 'horizontal' && 'w-5/12 shrink-0 snap-center lg:w-full'
mobileLayout === 'horizontal' && 'w-11/12 shrink-0 snap-center lg:w-full'
}`}
>
<Card

View File

@ -49,7 +49,7 @@ const Card: FC<CardProps> = ({ className, title, image, link, text, imageFormat
className={imageClasses}
image={image}
alt={image.alt || ''}
sizes="(max-width: 1024px) 50vw, 20vw"
sizes="(max-width: 1024px) 50vw, 90vw"
/>
</div>
)}