From 9845a82f4a085bdb09c7362f601678624baeafe3 Mon Sep 17 00:00:00 2001 From: ncoronel Date: Fri, 24 Jul 2026 10:31:27 -0300 Subject: [PATCH] feat(product-list): center justify content in adaptive layout for improved alignment --- .../components/product-list/product-list.component.scss | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/app/shared/components/product-list/product-list.component.scss b/src/app/shared/components/product-list/product-list.component.scss index b4e7668..85c8c5c 100644 --- a/src/app/shared/components/product-list/product-list.component.scss +++ b/src/app/shared/components/product-list/product-list.component.scss @@ -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) ); }