forked from M3-Academy/m3-academy-template-checkout
feat(footer): scss do footer mobile e telas acima de 2500px
This commit is contained in:
parent
334bea8cba
commit
35ae50f710
@ -8,6 +8,7 @@ export default class Footer {
|
|||||||
async init() {
|
async init() {
|
||||||
await this.selectors();
|
await this.selectors();
|
||||||
this.createPaymentsIcons();
|
this.createPaymentsIcons();
|
||||||
|
this.createVtexpciIcon();
|
||||||
this.createDevIcons();
|
this.createDevIcons();
|
||||||
// this.onUpdate();
|
// this.onUpdate();
|
||||||
}
|
}
|
||||||
@ -16,14 +17,14 @@ export default class Footer {
|
|||||||
//Para verificar se o carrinho está vazio e remover a prateleira de produtos:
|
//Para verificar se o carrinho está vazio e remover a prateleira de produtos:
|
||||||
// vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement
|
// vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement
|
||||||
this.checkoutVazio = await waitElement(".empty-cart-content");
|
this.checkoutVazio = await waitElement(".empty-cart-content");
|
||||||
this.payments = await waitElement(".footerCheckout__stamps");
|
this.payments = await waitElement(".footerCheckout__payments");
|
||||||
|
this.vtexpci = await waitElement(".footerCheckout__vtexpci");
|
||||||
this.devIncons = await waitElement(".footerCheckout__developedBy");
|
this.devIncons = await waitElement(".footerCheckout__developedBy");
|
||||||
}
|
}
|
||||||
|
|
||||||
createPaymentsIcons() {
|
createPaymentsIcons() {
|
||||||
this.payments.innerHTML = `
|
this.payments.innerHTML = `
|
||||||
<div class="payments-icons-wrapper">
|
<ul class="payments-icons-wrapper">
|
||||||
<ul>
|
|
||||||
<li>
|
<li>
|
||||||
<img
|
<img
|
||||||
src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png"
|
src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png"
|
||||||
@ -66,17 +67,20 @@ export default class Footer {
|
|||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
</li>
|
</li>
|
||||||
<li id="vtexIcon">
|
|
||||||
<img
|
|
||||||
src="https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png"
|
|
||||||
alt=""
|
|
||||||
/>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
createVtexpciIcon() {
|
||||||
|
this.vtexpci.innerHTML = `
|
||||||
|
<img class="vtex-icon"
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
createDevIcons() {
|
createDevIcons() {
|
||||||
this.devIncons.innerHTML = `
|
this.devIncons.innerHTML = `
|
||||||
<li>
|
<li>
|
||||||
|
@ -2,16 +2,15 @@
|
|||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 7px 0;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 7px 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
@include mq(dt, min) {
|
@include mq(dt, min) {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 15px 0 15px 0;
|
padding: 15px 0 15px 0;
|
||||||
gap: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@include mq(tv, min) {
|
@include mq(tv, min) {
|
||||||
@ -38,7 +37,7 @@
|
|||||||
margin-top: 17px;
|
margin-top: 17px;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
margin-left: 8px;
|
margin-left: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -58,68 +57,67 @@
|
|||||||
&__stamps {
|
&__stamps {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-self: center;
|
|
||||||
margin: 0;
|
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
margin: 0 0 0 5px;
|
||||||
|
|
||||||
@include mq(dt, max) {
|
@include mq(dt, min) {
|
||||||
display: flex;
|
justify-content: center;
|
||||||
order: 1;
|
min-width: 404px;
|
||||||
align-self: center;
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
min-width: 690.52px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.payments-icons-wrapper {
|
.payments-icons-wrapper {
|
||||||
img {
|
display: flex;
|
||||||
width: 100%;
|
align-items: center;
|
||||||
}
|
justify-content: center;
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
ul {
|
|
||||||
margin: 0;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
list-style: none;
|
|
||||||
|
|
||||||
@include mq(dt, min) {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
li {
|
li {
|
||||||
width: 3.77%;
|
width: 35.65px;
|
||||||
min-width: 35.65px;
|
|
||||||
margin-right: 4px;
|
|
||||||
|
|
||||||
@include mq(dt, min) {
|
|
||||||
width: 5.22%;
|
|
||||||
margin-right: 13px;
|
|
||||||
}
|
|
||||||
@include mq(tv, min) {
|
|
||||||
width: 6.12%;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#vtexIcon {
|
@include mq(tv, min) {
|
||||||
width: 53px;
|
li {
|
||||||
margin-left: 10px;
|
width: 69.63px;
|
||||||
position: relative;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#vtexIcon::before {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
display: inline-block;
|
|
||||||
height: 24px;
|
|
||||||
top: 5px;
|
|
||||||
left: -10px;
|
|
||||||
border-left: 1px solid $gray;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__divider {
|
.footerCheckout__stamps__divider {
|
||||||
background-color: $gray-200;
|
position: relative;
|
||||||
display: inline-block;
|
border-left: 1px solid $gray;
|
||||||
height: 24px;
|
margin-left: 4px;
|
||||||
margin: 0 8px;
|
|
||||||
width: 1px;
|
// &::before {
|
||||||
|
// content: "";
|
||||||
|
// color: $gray;
|
||||||
|
// position: absolute;
|
||||||
|
// }
|
||||||
|
|
||||||
|
@include mq(dt, min) {
|
||||||
|
margin-left: 11.35px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerCheckout__vtexpci {
|
||||||
|
margin-left: 10px;
|
||||||
|
|
||||||
|
.vtex-icon {
|
||||||
|
width: 53px;
|
||||||
|
height: 33px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
.vtex-icon {
|
||||||
|
width: 103.52px;
|
||||||
|
height: 64.46px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,7 +126,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-right: 16.5px;
|
// margin-right: 16.5px;
|
||||||
|
|
||||||
@include mq(dt, max) {
|
@include mq(dt, max) {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -139,6 +137,7 @@
|
|||||||
|
|
||||||
@include mq(dt, min) {
|
@include mq(dt, min) {
|
||||||
min-width: 217px;
|
min-width: 217px;
|
||||||
|
margin-right: 22.5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
@ -189,4 +188,16 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footerCheckout::after,
|
||||||
|
::before {
|
||||||
|
display: none;
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerCheckout::before,
|
||||||
|
::after {
|
||||||
|
display: none;
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user