From 32f86d14d628eb6afc35d2ca0fa07654a170dd8b Mon Sep 17 00:00:00 2001 From: ncoronel Date: Mon, 21 Sep 2026 15:19:45 -0300 Subject: [PATCH] fix(store-footer): constrain brand logo dimensions --- .../store-layout/store-footer/store-footer.component.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/core/layout/store-layout/store-footer/store-footer.component.scss b/src/app/core/layout/store-layout/store-footer/store-footer.component.scss index e2cb705..058bac4 100644 --- a/src/app/core/layout/store-layout/store-footer/store-footer.component.scss +++ b/src/app/core/layout/store-layout/store-footer/store-footer.component.scss @@ -22,8 +22,9 @@ .store-layout__brand-logo { display: block; - width: 100%; - height: 100%; + width: auto; + height: auto; + max-width: 130px; max-height: 65px; object-fit: contain; object-position: left center;