development #1

Merged
Vitor_soares merged 20 commits from development into master 2023-02-09 17:48:40 +00:00
3 changed files with 124 additions and 2 deletions
Showing only changes of commit 08819e3af8 - Show all commits

View File

@ -95,7 +95,7 @@
font-size: 0;
}
.skuSelectorContainer .skuSelectorSubcontainer--tamanho .skuSelectorTextContainer .skuSelectorName::after {
content: "OUTROS TAMANHOS";
content: "OUTROS TAMANHOS:";
font-size: 14px;
line-height: 19px;
font-weight: 400;
@ -192,4 +192,56 @@
font-size: 14px;
line-height: 19px;
color: #929292;
}
.shippingTable {
display: flex;
flex-direction: column;
}
.shippingTable .shippingTableHead {
display: block;
}
.shippingTable .shippingTableRow {
display: flex;
flex-direction: row;
}
.shippingTable .shippingTableRow .shippingTableHeadDeliveryName {
font-weight: 400;
font-size: 14px;
line-height: 19px;
text-transform: uppercase;
color: #202020;
}
.shippingTable .shippingTableRow .shippingTableHeadDeliveryEstimate {
display: flex;
order: 3;
font-weight: 400;
font-size: 14px;
line-height: 19px;
text-transform: uppercase;
color: #202020;
}
.shippingTable .shippingTableRow .shippingTableHeadDeliveryPrice {
display: flex;
order: 2;
font-size: 0;
}
.shippingTable .shippingTableRow .shippingTableHeadDeliveryPrice::after {
content: "FRETE";
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #202020;
}
.shippingTableBody .shippingtableRow {
display: flex;
flex-direction: row;
}
.shippingTableBody .shippingTableCellDeliveryEstimate {
display: flex;
order: 3;
}
.shippingTableBody .shippingTableRadioBtn {
display: none;
}

View File

@ -105,7 +105,7 @@
font-size: 0;
&::after {
content: "OUTROS TAMANHOS";
content: "OUTROS TAMANHOS:";
font-size: 14px;
line-height: 19px;
font-weight: 400;
@ -232,3 +232,72 @@
}
}
// ENTREGA
.shippingTable {
display: flex;
flex-direction: column;
.shippingTableHead {
display: block;
}
.shippingTableRow {
display: flex;
flex-direction: row;
.shippingTableHeadDeliveryName {
font-weight: 400;
font-size: 14px;
line-height: 19px;
text-transform: uppercase;
color: $black-100;
}
.shippingTableHeadDeliveryEstimate {
display: flex;
order: 3;
font-weight: 400;
font-size: 14px;
line-height: 19px;
text-transform: uppercase;
color: $black-100;
}
.shippingTableHeadDeliveryPrice {
display: flex;
order: 2;
font-size: 0;
&::after {
content: "FRETE";
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: $black-100;
}
}
}
}
.shippingTableBody {
.shippingtableRow {
display: flex;
flex-direction: row;
}
.shippingTableCellDeliveryEstimate {
display: flex;
order: 3;
}
.shippingTableRadioBtn {
display: none;
}
}

View File

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