forked from M3-Academy/m3-academy-template-checkout
refactor(checkout vazio): Aplica mudança na forma de alterar o texto do botão
This commit is contained in:
parent
658c84d02b
commit
332e0d88d6
@ -10,7 +10,6 @@ export default class Footer {
|
||||
this.paymentsIconsHTML();
|
||||
this.vtexPciIconHTML();
|
||||
this.developedByLogoHTML();
|
||||
this.temptyCartTextBtn();
|
||||
// this.onUpdate();
|
||||
}
|
||||
|
||||
@ -21,7 +20,6 @@ export default class Footer {
|
||||
this.payments = await waitElement(".footerCheckout__payments");
|
||||
this.vtexPCI = await waitElement(".footerCheckout__vtexpci");
|
||||
this.developedBy = await waitElement(".footerCheckout__developedBy");
|
||||
this.textBtn = await waitElement("#cart-choose-products");
|
||||
}
|
||||
|
||||
paymentsIconsHTML() {
|
||||
@ -74,12 +72,6 @@ export default class Footer {
|
||||
}
|
||||
}
|
||||
|
||||
temptyCartTextBtn() {
|
||||
if (this.textBtn) {
|
||||
this.textBtn.textContent = "Continuar comprando";
|
||||
}
|
||||
}
|
||||
|
||||
onUpdate() {
|
||||
//Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
|
||||
// vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver
|
||||
|
@ -48,24 +48,38 @@
|
||||
background: transparent;
|
||||
border: 1px solid $color-black2;
|
||||
border-radius: 0px;
|
||||
transition: ease-in 0.22s all;
|
||||
outline: none;
|
||||
font-family: $font-family-secundary;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
letter-spacing: 0.05em;
|
||||
color: $color-black2;
|
||||
text-transform: uppercase;
|
||||
transition: ease-in 0.22s all;
|
||||
margin: 22px 0 262px 0;
|
||||
padding: 16px 26px;
|
||||
cursor: pointer;
|
||||
margin: 22px 0 262px 0;
|
||||
font-size: 0;
|
||||
|
||||
&::after {
|
||||
content: "Continuar comprando";
|
||||
font-family: $font-family-secundary;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
letter-spacing: 0.05em;
|
||||
color: $color-black2;
|
||||
text-transform: uppercase;
|
||||
vertical-align: top;
|
||||
vertical-align: bottom;
|
||||
|
||||
@include mq(xg, min) {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
@include mq(xsp, max) {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@include mq(xg, min) {
|
||||
font-size: 28px;
|
||||
line-height: 33px;
|
||||
padding: 16px 121px;
|
||||
}
|
||||
|
||||
@ -75,12 +89,10 @@
|
||||
}
|
||||
|
||||
@include mq(xsp, max) {
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
padding: 16px 20px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
&:hover {
|
||||
background: lighten($color-black, 5);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user