mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
Min images
This commit is contained in:
parent
62cc3b2493
commit
d74ffb1401
@ -125,15 +125,11 @@
|
||||
}
|
||||
|
||||
.imageContainer {
|
||||
& > div {
|
||||
& > div {
|
||||
height: 100%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
overflow: hidden;
|
||||
@apply flex items-center justify-center;
|
||||
}
|
||||
|
||||
.product-image {
|
||||
height: 120% !important;
|
||||
top: -10% !important;
|
||||
.image {
|
||||
object-fit: cover;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
@ -51,8 +51,8 @@ const ProductCard: FC<Props> = ({
|
||||
width={imgWidth}
|
||||
height={imgHeight}
|
||||
priority={priority}
|
||||
quality="85"
|
||||
layout={imgLayout}
|
||||
quality="85"
|
||||
/>
|
||||
</div>
|
||||
) : (
|
||||
@ -73,8 +73,8 @@ const ProductCard: FC<Props> = ({
|
||||
</div>
|
||||
<div className={s.imageContainer}>
|
||||
<Image
|
||||
className={s.image}
|
||||
alt={p.name}
|
||||
className={cn('w-full object-cover', s['product-image'])}
|
||||
src={src}
|
||||
width={imgWidth}
|
||||
height={imgHeight}
|
||||
|
@ -1,6 +1,6 @@
|
||||
module.exports = {
|
||||
images: {
|
||||
imagesSizes: [320, 480, 820, 1200, 1600],
|
||||
imagesSizes: [320, 480, 820, 1280],
|
||||
domains: ['cdn11.bigcommerce.com'],
|
||||
},
|
||||
i18n: {
|
||||
|
@ -91,8 +91,8 @@ export default function Home({
|
||||
key={node.path}
|
||||
product={node}
|
||||
// The first image is the largest one in the grid
|
||||
imgWidth={i === 0 ? 1280 : 820}
|
||||
imgHeight={i === 0 ? 1280 : 820}
|
||||
imgWidth={i === 0 ? 1080 : 540}
|
||||
imgHeight={i === 0 ? 1080 : 540}
|
||||
priority
|
||||
/>
|
||||
))}
|
||||
@ -125,8 +125,8 @@ export default function Home({
|
||||
key={node.path}
|
||||
product={node}
|
||||
// The second image is the largest one in the grid
|
||||
imgWidth={i === 1 ? 1280 : 820}
|
||||
imgHeight={i === 1 ? 1280 : 820}
|
||||
imgWidth={i === 1 ? 1080 : 540}
|
||||
imgHeight={i === 1 ? 1080 : 540}
|
||||
/>
|
||||
))}
|
||||
</Grid>
|
||||
|
Loading…
x
Reference in New Issue
Block a user