feat(pdp): Adiciona opcoes de frete

This commit is contained in:
Cainã Milech 2023-01-24 15:13:48 -03:00
parent ef381b2880
commit f8f8ca89ad
5 changed files with 113 additions and 3 deletions

View File

@ -28,5 +28,17 @@
font-weight: 400; font-weight: 400;
font-size: 14px; font-size: 14px;
line-height: 19px; 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;
} }

View File

@ -162,6 +162,9 @@
position: relative; position: relative;
padding: 0; padding: 0;
} }
.shippingContainer :global(.vtex-input__error) {
position: absolute;
}
.shippingContainer :global(.vtex-input__label) { .shippingContainer :global(.vtex-input__label) {
font-size: 0; font-size: 0;
} }
@ -212,6 +215,42 @@
color: #fff; 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 { .productDescriptionContainer--descricao {
display: flex; display: flex;
justify-content: left; justify-content: left;

View File

@ -5,7 +5,7 @@
font-weight: 400; font-weight: 400;
font-size: 14px; font-size: 14px;
line-height: 19px; line-height: 19px;
color: #929292; color: $color-gray6;
.homeIcon--testebread { .homeIcon--testebread {
display: none; display: none;
@ -19,7 +19,22 @@
font-weight: 400; font-weight: 400;
font-size: 14px; font-size: 14px;
line-height: 19px; 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;
}
} }

View File

@ -176,6 +176,10 @@
padding: 0; padding: 0;
} }
:global(.vtex-input__error) {
position: absolute;
}
:global(.vtex-input__label) { :global(.vtex-input__label) {
font-size: 0; 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 //DESCRIÇÃO
.productDescriptionContainer--descricao { .productDescriptionContainer--descricao {

View File

@ -1,5 +1,6 @@
$color-black: #292929; $color-black: #292929;
$color-black-100: #000000; $color-black-100: #000000;
$color-black2: #202020;
$color-white: #fff; $color-white: #fff;