forked from M3-Academy/challenge-vtex-io
Entrega do Desafio #1
@ -286,6 +286,8 @@
|
||||
.shippingTable .shippingTableHead .shippingTableRow {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 16.36%);
|
||||
grid-template-areas: "A B C";
|
||||
column-gap: 32px;
|
||||
}
|
||||
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryName,
|
||||
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryEstimate,
|
||||
@ -299,9 +301,24 @@
|
||||
}
|
||||
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryName {
|
||||
text-align: left;
|
||||
grid-area: A;
|
||||
}
|
||||
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryEstimate {
|
||||
grid-area: C;
|
||||
text-align: left;
|
||||
}
|
||||
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryPrice {
|
||||
text-align: right;
|
||||
text-align: left;
|
||||
grid-area: B;
|
||||
font-size: 0;
|
||||
}
|
||||
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryPrice::after {
|
||||
content: "frete";
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 19px;
|
||||
color: #202020;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.shippingTable .shippingTableBody .shippingTableRow {
|
||||
display: grid;
|
||||
|
@ -290,6 +290,8 @@
|
||||
.shippingTableRow {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 16.36%);
|
||||
grid-template-areas: "A B C";
|
||||
column-gap: 32px;
|
||||
.shippingTableHeadDeliveryName,
|
||||
.shippingTableHeadDeliveryEstimate,
|
||||
.shippingTableHeadDeliveryPrice {
|
||||
@ -302,9 +304,24 @@
|
||||
}
|
||||
.shippingTableHeadDeliveryName {
|
||||
text-align: left;
|
||||
grid-area: A;
|
||||
}
|
||||
.shippingTableHeadDeliveryEstimate {
|
||||
grid-area: C;
|
||||
text-align: left;
|
||||
}
|
||||
.shippingTableHeadDeliveryPrice {
|
||||
text-align: right;
|
||||
text-align: left;
|
||||
grid-area: B;
|
||||
font-size: 0;
|
||||
}
|
||||
.shippingTableHeadDeliveryPrice::after{
|
||||
content: "frete";
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 19px;
|
||||
color: #202020;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -350,7 +367,7 @@
|
||||
max-height: unset;
|
||||
left: 6.9%;
|
||||
position: relative;
|
||||
& .productImageTag--image-description--main{
|
||||
& .productImageTag--image-description--main {
|
||||
max-height: unset !important;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user