From f4e854843e459a0908ba2e199ea0ef54efa346be Mon Sep 17 00:00:00 2001 From: ncoronel Date: Fri, 24 Jul 2026 10:30:24 -0300 Subject: [PATCH] feat(product-list): improve adaptive layout by refining grid-template-columns for better responsiveness --- .../components/product-list/product-list.component.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 85c8c5c..b4e7668 100644 --- a/src/app/shared/components/product-list/product-list.component.scss +++ b/src/app/shared/components/product-list/product-list.component.scss @@ -15,9 +15,13 @@ } &--adaptive { + justify-content: center; grid-template-columns: repeat( auto-fit, - minmax(min(100%, var(--product-list-item-min-width)), 1fr) + minmax( + min(100%, var(--product-list-item-min-width)), + var(--product-list-item-min-width) + ) ); }