feat: adiciona estilização cep
This commit is contained in:
parent
50ca7ed273
commit
08819e3af8
@ -95,7 +95,7 @@
|
|||||||
font-size: 0;
|
font-size: 0;
|
||||||
}
|
}
|
||||||
.skuSelectorContainer .skuSelectorSubcontainer--tamanho .skuSelectorTextContainer .skuSelectorName::after {
|
.skuSelectorContainer .skuSelectorSubcontainer--tamanho .skuSelectorTextContainer .skuSelectorName::after {
|
||||||
content: "OUTROS TAMANHOS";
|
content: "OUTROS TAMANHOS:";
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@ -193,3 +193,55 @@
|
|||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
color: #929292;
|
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;
|
||||||
|
}
|
@ -105,7 +105,7 @@
|
|||||||
font-size: 0;
|
font-size: 0;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: "OUTROS TAMANHOS";
|
content: "OUTROS TAMANHOS:";
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
font-weight: 400;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
$color-black: #292929;
|
$color-black: #292929;
|
||||||
|
$black-100: #202020;
|
||||||
$black: #000000;
|
$black: #000000;
|
||||||
|
|
||||||
$white: #fff;
|
$white: #fff;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user