From 4e0f3e93262bf137e3b44b35f4a4f4b13dbd5cd8 Mon Sep 17 00:00:00 2001 From: Carlos Lins Date: Sat, 4 Feb 2023 14:42:29 -0300 Subject: [PATCH] fix: Corrigindo border-radius thumbnails images product --- styles/css/vtex.store-components.css | 3 +++ styles/sass/pages/product/vtex.store-components.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/styles/css/vtex.store-components.css b/styles/css/vtex.store-components.css index a0db45b..a22a466 100644 --- a/styles/css/vtex.store-components.css +++ b/styles/css/vtex.store-components.css @@ -58,6 +58,9 @@ display: flex; height: 100%; } +.figure--product-images-pdp .thumbImg--product-images-pdp { + border-radius: 8px; +} .productImage .productImageTag--main { object-fit: fill !important; diff --git a/styles/sass/pages/product/vtex.store-components.scss b/styles/sass/pages/product/vtex.store-components.scss index ad47898..6f5cb26 100644 --- a/styles/sass/pages/product/vtex.store-components.scss +++ b/styles/sass/pages/product/vtex.store-components.scss @@ -5,6 +5,10 @@ .figure--product-images-pdp{ display: flex; height: 100%; + + .thumbImg--product-images-pdp{ + border-radius: 8px; + } } .productImage{