feature/sabrinamiranda #1
@ -24,6 +24,7 @@
|
|||||||
|
|
||||||
[class*="html--add-to-cart-button"] button {
|
[class*="html--add-to-cart-button"] button {
|
||||||
background-color: #000000 !important;
|
background-color: #000000 !important;
|
||||||
|
border-radius: 0;
|
||||||
border: none;
|
border: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
@ -59,13 +60,18 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 22px;
|
line-height: 22px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
[class*="html--shipping-simulator"] button {
|
[class*="html--shipping-simulator"] button {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
|
border-radius: 0;
|
||||||
border: none;
|
border: none;
|
||||||
width: 49px;
|
width: 49px;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
left: 228px;
|
||||||
}
|
}
|
||||||
|
|
||||||
[class*="html--shipping-simulator"] a {
|
[class*="html--shipping-simulator"] a {
|
||||||
|
@ -191,8 +191,79 @@
|
|||||||
.shippingContainer :global(.vtex-input-prefix__group) {
|
.shippingContainer :global(.vtex-input-prefix__group) {
|
||||||
height: 49px;
|
height: 49px;
|
||||||
width: 231px;
|
width: 231px;
|
||||||
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
.shippingContainer :global(.vtex-input__error) {
|
.shippingContainer :global(.vtex-input__error) {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTable {
|
||||||
|
margin: 16px 0 0 0;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHead {
|
||||||
|
display: table-header-group;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryName,
|
||||||
|
.shippingTableHeadDeliveryEstimate {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #202020;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryPrice {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.shippingTableHeadDeliveryPrice::after {
|
||||||
|
content: "Frete";
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #202020;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 20% 15% 65%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableCellDeliveryName,
|
||||||
|
.shippingTableCellDeliveryName {
|
||||||
|
grid-area: 1/1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryEstimate,
|
||||||
|
.shippingTableCellDeliveryEstimate {
|
||||||
|
grid-area: 1/3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryPrice,
|
||||||
|
.shippingTableCellDeliveryPrice {
|
||||||
|
grid-area: 1/2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableCellDeliveryName,
|
||||||
|
.shippingTableCellDeliveryEstimate,
|
||||||
|
.shippingTableCellDeliveryPrice {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #AFAFAF;
|
||||||
|
padding: 0 0 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableRadioBtn {
|
||||||
|
display: none;
|
||||||
}
|
}
|
@ -195,6 +195,7 @@
|
|||||||
:global(.vtex-input-prefix__group ) {
|
:global(.vtex-input-prefix__group ) {
|
||||||
height: 49px;
|
height: 49px;
|
||||||
width: 231px;
|
width: 231px;
|
||||||
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:global(.vtex-input__error) {
|
:global(.vtex-input__error) {
|
||||||
@ -202,3 +203,74 @@
|
|||||||
margin: 2px;
|
margin: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shippingTable {
|
||||||
|
margin: 16px 0 0 0;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHead {
|
||||||
|
display: table-header-group;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryName,
|
||||||
|
.shippingTableHeadDeliveryEstimate {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #202020;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryPrice {
|
||||||
|
font-size: 0;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: "Frete";
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #202020;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 20% 15% 65%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableCellDeliveryName,
|
||||||
|
.shippingTableCellDeliveryName{
|
||||||
|
grid-area: 1/1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryEstimate,
|
||||||
|
.shippingTableCellDeliveryEstimate {
|
||||||
|
grid-area: 1/3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableHeadDeliveryPrice,
|
||||||
|
.shippingTableCellDeliveryPrice {
|
||||||
|
grid-area: 1/2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableCellDeliveryName,
|
||||||
|
.shippingTableCellDeliveryEstimate,
|
||||||
|
.shippingTableCellDeliveryPrice {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #AFAFAF;
|
||||||
|
padding: 0 0 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTableRadioBtn {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user