From a336d61de5b24c6cbbf871bf29703e2f023054e6 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Mon, 26 Dec 2022 21:07:52 -0300 Subject: [PATCH] =?UTF-8?q?feat(checkout):=20criado=20e=20modificado=20est?= =?UTF-8?q?iliza=C3=A7=C3=A3o.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sass/checkout/_checkout-pagamento.scss | 109 ++++++++++++++++++ 1 file changed, 109 insertions(+) diff --git a/checkout/src/arquivos/sass/checkout/_checkout-pagamento.scss b/checkout/src/arquivos/sass/checkout/_checkout-pagamento.scss index 9a52731..144b3a9 100644 --- a/checkout/src/arquivos/sass/checkout/_checkout-pagamento.scss +++ b/checkout/src/arquivos/sass/checkout/_checkout-pagamento.scss @@ -5,7 +5,116 @@ body .container-main.container-order-form .orderform-template.active { margin-right: 0; float: right; } + .orderform-template-holder { width: 66.1132%; } + + .shipping-summary-placeholder { + .address-summary-BRA { + // Alterar depois + display: grid; + grid-template-columns: repeat(3, max-content); + grid-template-rows: repeat(2, max-content); + padding: 0; + margin: 10px 0 18px 0; + + .postalCode { + grid-column: 2; + } + + span { + .number-delimiter { + display: none; + } + } + } + + .link-change-shipping { + display: none; + } + + .shp-summary-package { + padding: 0; + margin-bottom: 14px; + } + + .shp-summary-group { + padding: 0; + } + + .shp-summary-group-info { + border: none; + } + + .shp-summary-group-price { + display: none; + } + } + + .payment-data.span12 { + .accordion-heading { + display: flex; + + .accordion-toggle { + flex-direction: row; + } + + i { + display: none; + } + } + + .accordion-inner { + .box-step-content { + .payment-group-list-btn { + margin-top: -31px; + } + + .payment-group { + a { + width: 209px; + height: 50px; + border-radius: 6px; + margin: 0 1px 12px; + padding: 0 0 0 0; + border: 1px solid #000; + text-decoration: none; + + span { + font-family: $font-family; + color: $color-gray10; + font-size: 14px; + font-weight: 400; + line-height: 24px; + letter-spacing: -0.01em; + text-align: center; + padding: 13px 0px; + } + } + + .payment-group-item-text { + background-image: none !important; + } + + .payment-group-item.active { + border: 1px solid $color-orange1; + background-color: $color-white3; + + span { + color: $color-orange1; + } + } + } + + .link-gift-card { + display: none !important; + } + + .steps-view { + margin-top: 3px; + } + } + } + } }