From 879fc0fc9878b18656156e7199bed9bec6c403de Mon Sep 17 00:00:00 2001 From: ueberjames Date: Tue, 7 Feb 2023 21:36:10 -0300 Subject: [PATCH] =?UTF-8?q?estiliza=C3=A7=C3=A3o=20do=20cep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/css/vtex.store-components.css | 15 +++++++++++++ .../pages/product/vtex.store-components.scss | 21 +++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/styles/css/vtex.store-components.css b/styles/css/vtex.store-components.css index 1f07097..96b7fb6 100644 --- a/styles/css/vtex.store-components.css +++ b/styles/css/vtex.store-components.css @@ -34,6 +34,7 @@ } .skuSelectorContainer .skuSelectorSubcontainer--cor { order: 2; + margin-bottom: 16px; } .skuSelectorContainer .skuSelectorSubcontainer--cor .skuSelectorName { font-size: 0; @@ -142,4 +143,18 @@ font-size: 14px; line-height: 19px; font-weight: 600; +} +.shippingContainer :global(.vtex-button__label) { + height: fit-content; +} +.shippingContainer :global(.vtex-address-form__postalCode-forgottenURL) { + position: relative; + left: 20px; + margin-top: 31px; +} +.shippingContainer :global(.vtex-address-form__postalCode-forgottenURL) :last-child { + color: #000000; +} +.shippingContainer :global(.vtex__icon-external-link) { + display: none; } \ No newline at end of file diff --git a/styles/sass/pages/product/vtex.store-components.scss b/styles/sass/pages/product/vtex.store-components.scss index a108cd2..ececc9f 100644 --- a/styles/sass/pages/product/vtex.store-components.scss +++ b/styles/sass/pages/product/vtex.store-components.scss @@ -29,10 +29,12 @@ display: flex; flex-direction: column; + .skuSelectorSubcontainer--cor { order: 2; + margin-bottom: 16px; .skuSelectorName { @@ -209,6 +211,25 @@ display: flex; } } +:global(.vtex-button__label) { + height: fit-content; +} + +:global(.vtex-address-form__postalCode-forgottenURL) { + position: relative; + left: 20px; + margin-top: 31px; + + :last-child { + color: $color-black2; + + } + +} +:global(.vtex__icon-external-link) { + display: none; +} + }