diff --git a/styles/css/vtex.breadcrumb.css b/styles/css/vtex.breadcrumb.css index 434fe91..978fc84 100644 --- a/styles/css/vtex.breadcrumb.css +++ b/styles/css/vtex.breadcrumb.css @@ -28,5 +28,17 @@ font-weight: 400; font-size: 14px; line-height: 19px; - color: #929292; +} +.container--testebread .arrow--testebread--1 { + font-size: 0; +} +.container--testebread .arrow--testebread--1::after { + content: "Sapatos"; + font-weight: 400; + font-size: 14px; + line-height: 19px; +} +.container--testebread .termArrow--testebread, +.container--testebread .term--testebread { + display: none; } \ No newline at end of file diff --git a/styles/css/vtex.store-components.css b/styles/css/vtex.store-components.css index f366abf..4767658 100644 --- a/styles/css/vtex.store-components.css +++ b/styles/css/vtex.store-components.css @@ -162,6 +162,9 @@ position: relative; padding: 0; } +.shippingContainer :global(.vtex-input__error) { + position: absolute; +} .shippingContainer :global(.vtex-input__label) { font-size: 0; } @@ -212,6 +215,42 @@ color: #fff; } +.shippingTable { + border: none; +} + +.shippingTableRadioBtn { + display: none; +} + +.shippingTableHead { + display: table-header-group; + font-weight: 400; + font-size: 14px; + line-height: 19px; + text-transform: uppercase; + color: #202020; +} +.shippingTableHead .shippingTableHeadDeliveryName, +.shippingTableHead .shippingTableHeadDeliveryEstimate, +.shippingTableHead .shippingTableHeadDeliveryPrice { + text-align: initial; +} + +.shippingTableCell { + font-weight: 400; + font-size: 12px; + line-height: 16px; + color: #afafaf; +} + +.shippingTableCellDeliveryName, +.shippingTableCellDeliveryPrice, +.shippingTableCellDeliveryEstimate { + padding: 0; + padding-top: 15px; +} + .productDescriptionContainer--descricao { display: flex; justify-content: left; diff --git a/styles/sass/pages/product/vtex.breadcrumb.scss b/styles/sass/pages/product/vtex.breadcrumb.scss index 81fdbe6..2ce5356 100644 --- a/styles/sass/pages/product/vtex.breadcrumb.scss +++ b/styles/sass/pages/product/vtex.breadcrumb.scss @@ -5,7 +5,7 @@ font-weight: 400; font-size: 14px; line-height: 19px; - color: #929292; + color: $color-gray6; .homeIcon--testebread { display: none; @@ -19,7 +19,22 @@ font-weight: 400; font-size: 14px; line-height: 19px; - color: #929292; } } + + .arrow--testebread--1 { + font-size: 0; + + &::after { + content: "Sapatos"; + font-weight: 400; + font-size: 14px; + line-height: 19px; + } + } + + .termArrow--testebread, + .term--testebread { + display: none; + } } diff --git a/styles/sass/pages/product/vtex.store-components.scss b/styles/sass/pages/product/vtex.store-components.scss index 38bc6fd..bc72b80 100644 --- a/styles/sass/pages/product/vtex.store-components.scss +++ b/styles/sass/pages/product/vtex.store-components.scss @@ -176,6 +176,10 @@ padding: 0; } + :global(.vtex-input__error) { + position: absolute; + } + :global(.vtex-input__label) { font-size: 0; @@ -235,6 +239,45 @@ } } +//FRETES OPCOES + +.shippingTable { + border: none; +} + +.shippingTableRadioBtn { + display: none; +} + +.shippingTableHead { + display: table-header-group; + font-weight: 400; + font-size: 14px; + line-height: 19px; + text-transform: uppercase; + color: $color-black2; + + .shippingTableHeadDeliveryName, + .shippingTableHeadDeliveryEstimate, + .shippingTableHeadDeliveryPrice { + text-align: initial; + } +} + +.shippingTableCell { + font-weight: 400; + font-size: 12px; + line-height: 16px; + color: #afafaf; +} + +.shippingTableCellDeliveryName, +.shippingTableCellDeliveryPrice, +.shippingTableCellDeliveryEstimate { + padding: 0; + padding-top: 15px; +} + //DESCRIÇÃO .productDescriptionContainer--descricao { diff --git a/styles/sass/utils/_vars.scss b/styles/sass/utils/_vars.scss index 6f84d30..ed9fbe3 100644 --- a/styles/sass/utils/_vars.scss +++ b/styles/sass/utils/_vars.scss @@ -1,5 +1,6 @@ $color-black: #292929; $color-black-100: #000000; +$color-black2: #202020; $color-white: #fff;