feat(product-list): center justify content in adaptive layout for improved alignment

This commit is contained in:
2026-07-24 10:31:27 -03:00
parent f4e854843e
commit 9845a82f4a

View File

@@ -15,13 +15,9 @@
}
&--adaptive {
justify-content: center;
grid-template-columns: repeat(
auto-fit,
minmax(
min(100%, var(--product-list-item-min-width)),
var(--product-list-item-min-width)
)
minmax(min(100%, var(--product-list-item-min-width)), 1fr)
);
}