forked from M3-Academy/m3-academy-template-checkout
Merge pull request 'feature/footer' (#1) from feature/footer into development
Reviewed-on: #1
This commit is contained in:
commit
437a0090d4
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
*node_modules
|
*node_modules
|
||||||
node_modules
|
node_modules
|
||||||
|
yarn.lock
|
||||||
|
|
||||||
# para arquivos sass e scss
|
# para arquivos sass e scss
|
||||||
|
|
||||||
|
@ -7,34 +7,276 @@ export default class Footer {
|
|||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
await this.selectors();
|
await this.selectors();
|
||||||
// this.onUpdate();
|
this.events();
|
||||||
|
this.onUpdate();
|
||||||
|
this.createPaymentsIcons();
|
||||||
|
this.createVtexpciIcon();
|
||||||
|
this.createDevIcons();
|
||||||
|
// await this.addCarrossel();
|
||||||
|
}
|
||||||
|
|
||||||
|
events() {
|
||||||
|
window.addEventListener("hashchange", () => {
|
||||||
|
this.onUpdate();
|
||||||
|
if (window.location.hash != "#/cart") {
|
||||||
|
if (document.querySelector(".footerTitle") != null) {
|
||||||
|
document.querySelector(".footerTitle").style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
this.cartTitle.style.display = "none";
|
||||||
|
}
|
||||||
|
if (window.location.hash == "#/cart" && this.checkoutVazio.style.display == "none") {
|
||||||
|
if (document.querySelector(".footerTitle") != null) {
|
||||||
|
document.querySelector(".footerTitle").style.display = "block";
|
||||||
|
}
|
||||||
|
this.cartTitle.style.display = "block";
|
||||||
|
}
|
||||||
|
console.log("HASHCHANGE FOOTER");
|
||||||
|
if (window.location.hash == "#/cart" && this.checkoutVazio.style.display == "none") {
|
||||||
|
this.list.style.display = "flex";
|
||||||
|
}
|
||||||
|
if (window.location.hash != "#/cart") {
|
||||||
|
this.list.style.display = "none";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
addEventListener("resize", () => {
|
||||||
|
this.addCarrossel();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async selectors() {
|
async selectors() {
|
||||||
//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.list = await waitElement(".footerCheckout__prateleira", {
|
||||||
|
timeout: 5000,
|
||||||
|
interval: 1000,
|
||||||
|
});
|
||||||
|
// this.slick = await waitElement(".slick-test");
|
||||||
|
// this.footerTitle = await waitElement(".footerTitle", {
|
||||||
|
// timeout: 5000,
|
||||||
|
// interval: 1000,
|
||||||
|
// });
|
||||||
|
this.allList = await waitElement(".footerCheckout");
|
||||||
this.checkoutVazio = await waitElement(".empty-cart-content");
|
this.checkoutVazio = await waitElement(".empty-cart-content");
|
||||||
|
this.payments = await waitElement(".footerCheckout__payments");
|
||||||
|
this.vtexpci = await waitElement(".footerCheckout__vtexpci");
|
||||||
|
this.iconsFooter = await waitElement(".footerCheckout__developedBy");
|
||||||
|
this.listaPrateleira = await waitElement(".footerCheckout__prateleira");
|
||||||
|
this.cartTitle = await waitElement("#cart-title");
|
||||||
}
|
}
|
||||||
|
|
||||||
onUpdate() {
|
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
|
|
||||||
// sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver
|
|
||||||
let target = this.checkoutVazio;
|
let target = this.checkoutVazio;
|
||||||
|
let lista = this.list;
|
||||||
|
|
||||||
|
let cartTitle = this.cartTitle;
|
||||||
|
console.log("title:", cartTitle);
|
||||||
|
if (target.style.display == "none" && window.location.hash == "#/cart") {
|
||||||
|
lista.style.display = "flex";
|
||||||
|
cartTitle.style.display = "block";
|
||||||
|
if (!this.list.classList.contains("fetch")) {
|
||||||
|
console.log("PRIMEIRO NAO TEM FETCH");
|
||||||
|
this.fetchApiData();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
lista.style.display = "none";
|
||||||
|
cartTitle.style.display = "none";
|
||||||
|
}
|
||||||
let config = { childList: true, attributes: true };
|
let config = { childList: true, attributes: true };
|
||||||
let observer = new MutationObserver((mutations) => {
|
let observer = new MutationObserver((mutations) => {
|
||||||
|
if (window.location.hash == "#/cart") {
|
||||||
|
console.log("listairai", this.list.classList);
|
||||||
|
if (!lista.classList.contains("fetch")) {
|
||||||
|
console.log("SEGUNDO NAO TEM FETCH");
|
||||||
|
this.fetchApiData();
|
||||||
|
}
|
||||||
mutations.forEach(function (mutation) {
|
mutations.forEach(function (mutation) {
|
||||||
|
if (target.style.display != "none") {
|
||||||
|
if (document.querySelector(".footerTitle") != null) {
|
||||||
|
document.querySelector(".footerTitle").style.display = "none";
|
||||||
|
}
|
||||||
|
cartTitle.style.display = "none";
|
||||||
|
lista.style.display = "none";
|
||||||
|
} else {
|
||||||
|
if (document.querySelector(".footerTitle") != null) {
|
||||||
|
document.querySelector(".footerTitle").style.display = "block";
|
||||||
|
}
|
||||||
|
lista.style.display = "flex";
|
||||||
|
cartTitle.style.display = "block";
|
||||||
|
}
|
||||||
console.log(mutation.type);
|
console.log(mutation.type);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
observer.observe(target, config);
|
observer.observe(target, config);
|
||||||
}
|
}
|
||||||
|
|
||||||
async addCarrossel() {
|
async addCarrossel() {
|
||||||
const elemento = await waitElement("#my-element");
|
console.log("start slick");
|
||||||
$(elemento).slick({
|
const elemento = await waitElement(".slick-test");
|
||||||
|
if ($(elemento).hasClass("slick-initialized")) {
|
||||||
|
$(elemento).slick("unslick");
|
||||||
|
}
|
||||||
|
if (window.innerWidth > 1024) {
|
||||||
|
$(elemento).not(".slick-initialized").slick({
|
||||||
slidesToShow: 4,
|
slidesToShow: 4,
|
||||||
slidesToScroll: 1,
|
slidesToScroll: 1,
|
||||||
});
|
});
|
||||||
|
} else if (window.innerWidth > 375) {
|
||||||
|
$(elemento).not(".slick-initialized").slick({
|
||||||
|
slidesToShow: 3,
|
||||||
|
slidesToScroll: 1,
|
||||||
|
});
|
||||||
|
} else if (window.innerWidth <= 375) {
|
||||||
|
$(elemento).not(".slick-initialized").slick({
|
||||||
|
slidesToShow: 2,
|
||||||
|
slidesToScroll: 1,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("end slick");
|
||||||
|
}
|
||||||
|
|
||||||
|
fetchApiData() {
|
||||||
|
console.log("COMEÇO FETCH");
|
||||||
|
fetch(
|
||||||
|
"https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319"
|
||||||
|
)
|
||||||
|
.then((response) => response.json())
|
||||||
|
.then((data) => {
|
||||||
|
console.log(data);
|
||||||
|
const ul = document.createElement("ul");
|
||||||
|
|
||||||
|
ul.classList.add("slick-test");
|
||||||
|
this.list.appendChild(ul);
|
||||||
|
const footerCheckout = document.querySelector(".footerCheckout");
|
||||||
|
const footerTitle = document.createElement("p");
|
||||||
|
footerTitle.classList.add("footerTitle");
|
||||||
|
footerTitle.innerText = "Você também pode gostar:";
|
||||||
|
footerCheckout.insertBefore(footerTitle, this.list);
|
||||||
|
data.map((item) => {
|
||||||
|
let colors = "";
|
||||||
|
for (let i = 0; i < item.items.length; i++) {
|
||||||
|
console.log(colors);
|
||||||
|
colors += `<p>${item.items[i].name}</p>`;
|
||||||
|
}
|
||||||
|
const li = document.createElement("li");
|
||||||
|
li.setAttribute("name", item.itemId);
|
||||||
|
li.classList.add("itemList");
|
||||||
|
li.innerHTML = `<img class="productImg" src="${item.items[0].images[0].imageUrl}">
|
||||||
|
<p class="productName">${item.productName}</p>
|
||||||
|
<div class="itemSku">
|
||||||
|
${colors}
|
||||||
|
</div>
|
||||||
|
<a class="productLink" type="button" href="${item.link}">VER PRODUTO</a>`;
|
||||||
|
console.log(item.productName, colors);
|
||||||
|
console.log("adiciona li");
|
||||||
|
ul.appendChild(li);
|
||||||
|
this.list.classList.add("fetch");
|
||||||
|
console.log(this.list);
|
||||||
|
ul.style.width = "100%";
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.addCarrossel();
|
||||||
|
});
|
||||||
|
console.log("FIM FETCH");
|
||||||
|
}
|
||||||
|
|
||||||
|
createPaymentsIcons() {
|
||||||
|
this.payments.innerHTML = `
|
||||||
|
<ul class="payments-icons-wrapper">
|
||||||
|
<li>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/visaM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/amexM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/eloM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/hiperCardM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/payPalM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/boletoM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
createVtexpciIcon() {
|
||||||
|
this.vtexpci.innerHTML = `
|
||||||
|
<figure class="vtex-icon">
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
createDevIcons() {
|
||||||
|
this.iconsFooter.innerHTML = `
|
||||||
|
<li>
|
||||||
|
<a href="https://vtex.com/br-pt/">
|
||||||
|
<span>Powered By</span>
|
||||||
|
<figure>
|
||||||
|
<img class="vtex-icon" src="https://agenciamagma.vteximg.com.br/arquivos/logoVTEXM3Academy.png" alt="">
|
||||||
|
</figure>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://agenciam3.com/">
|
||||||
|
<span>Developed By</span>
|
||||||
|
<figure>
|
||||||
|
<img class="m3-icon" src="https://agenciamagma.vteximg.com.br/arquivos/logoM3M3Academy.png" alt="">
|
||||||
|
</figure>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,47 +1,134 @@
|
|||||||
/* _footer.scss */
|
|
||||||
.footerCheckout {
|
.footerCheckout {
|
||||||
border-top: none;
|
margin-top: auto;
|
||||||
color: $color-gray2;
|
//border-top: 1px solid #000;
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
width: 100%;
|
||||||
|
padding: 7px 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
@include mq(dt, min) {
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 15px 0 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
padding: 26px 0 26px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
align-items: center;
|
border-top: 1px solid $black;
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
@media screen and (max-width: 490px) {
|
||||||
|
padding: 7px 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__address {
|
&__address {
|
||||||
color: $color-gray2;
|
color: $gray-500;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-weight: 400;
|
||||||
font-weight: normal;
|
line-height: 14px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
line-height: 12px;
|
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
max-width: 40%;
|
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(dt, max) {
|
||||||
margin-bottom: 24px;
|
display: flex;
|
||||||
max-width: 100%;
|
width: 100%;
|
||||||
|
order: 2;
|
||||||
|
margin-top: 17px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
margin-left: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(dt, min) {
|
||||||
|
min-width: 269px;
|
||||||
|
margin-left: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 27px;
|
||||||
|
min-width: 537px;
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__stamps {
|
&__stamps {
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-self: center;
|
height: 33px;
|
||||||
|
align-items: center;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
margin: 0 0 0 5px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
li {
|
||||||
align-self: center;
|
height: 33px;
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__divider {
|
@include mq(dt, min) {
|
||||||
background-color: $color-gray4;
|
justify-content: center;
|
||||||
display: inline-block;
|
min-width: 404px;
|
||||||
height: 24px;
|
margin: 0;
|
||||||
margin: 0 8px;
|
}
|
||||||
width: 1px;
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
min-width: 690.52px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payments-icons-wrapper {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
list-style: none;
|
||||||
|
gap: 13.35px;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
@include mq(dt, max) {
|
||||||
|
gap: 4.35px;
|
||||||
|
}
|
||||||
|
figure {
|
||||||
|
padding: 6px 0 7px;
|
||||||
|
width: 35.65px;
|
||||||
|
height: 20px;
|
||||||
|
margin: 0;
|
||||||
|
@include mq(tv, min) {
|
||||||
|
width: 69.63px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(Gf, max) {
|
||||||
|
width: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerCheckout__stamps__divider {
|
||||||
|
border-left: 1px solid $gray;
|
||||||
|
margin: 0 10px;
|
||||||
|
height: 33px;
|
||||||
|
padding: 0 0 9px;
|
||||||
|
|
||||||
|
@include mq(dt, min) {
|
||||||
|
margin-left: 11.35px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerCheckout__vtexpci {
|
||||||
|
.vtex-icon {
|
||||||
|
width: 53px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
.vtex-icon {
|
||||||
|
width: 103.52px;
|
||||||
|
height: 64.46px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -51,18 +138,43 @@
|
|||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
li:last-child {
|
@include mq(dt, max) {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
order: 3;
|
||||||
|
margin-top: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(dt, min) {
|
||||||
|
min-width: 217px;
|
||||||
|
margin-right: 22.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
margin-left: 16px;
|
margin-left: 16px;
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-icon {
|
||||||
|
width: 44.92px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.m3-icon {
|
||||||
|
width: 28.66px;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: $color-gray2;
|
color: $gray-500;
|
||||||
display: flex;
|
display: flex;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-size: 10px;
|
font-size: 9px;
|
||||||
line-height: 12px;
|
line-height: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
@ -70,5 +182,38 @@
|
|||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
min-width: 388.98px;
|
||||||
|
margin-right: 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-icon {
|
||||||
|
width: 87.73px;
|
||||||
|
}
|
||||||
|
.m3-icon {
|
||||||
|
width: 55.98px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerCheckout::after,
|
||||||
|
::before {
|
||||||
|
display: none;
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerCheckout::before,
|
||||||
|
::after {
|
||||||
|
display: none;
|
||||||
|
content: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1 +1,143 @@
|
|||||||
/* _prateleira.scss */
|
/* _prateleira.scss */
|
||||||
|
.footerCheckout__prateleira {
|
||||||
|
//width: 96.88% !important;
|
||||||
|
margin: 0 132px;
|
||||||
|
//width: 100% !important;
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: auto !important;
|
||||||
|
margin: 0 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.footerTitle {
|
||||||
|
text-align: center;
|
||||||
|
font-family: "Tenor Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 38px;
|
||||||
|
color: $black;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
@include mq(tv, min) {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 76px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-test {
|
||||||
|
width: 100%;
|
||||||
|
gap: 16px;
|
||||||
|
margin: 0 !important;
|
||||||
|
& li {
|
||||||
|
max-width: 97.98%;
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 164px !important;
|
||||||
|
}
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 97.86% !important;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
@include mq(tv, min) {
|
||||||
|
min-width: 485.07px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.itemList {
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 164px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.itemSku {
|
||||||
|
display: flex;
|
||||||
|
gap: 5px;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
height: 26px;
|
||||||
|
& p {
|
||||||
|
background: #00c8ff;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
padding: 5px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
height: 18px;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
color: $white;
|
||||||
|
@include mq(tv, min) {
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
height: 61px;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
@media (max-width: 1183px) {
|
||||||
|
height: 61px;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
@include mq(tv, min) {
|
||||||
|
min-height: 45px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.productName {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
margin: 20px 0px;
|
||||||
|
text-align: center;
|
||||||
|
height: 18px;
|
||||||
|
|
||||||
|
color: $black;
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
height: 36px;
|
||||||
|
}
|
||||||
|
@include mq(tv, min) {
|
||||||
|
height: 35px;
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.productImg {
|
||||||
|
background: #eeeeee;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.productLink {
|
||||||
|
background: #00c8ff;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
padding: 12px 0;
|
||||||
|
//padding: 12px 71px 12px 72px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin: 20px 0px 0px;
|
||||||
|
|
||||||
|
color: $white;
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
text-decoration: None;
|
||||||
|
}
|
||||||
|
@include mq(tv, min) {
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -45,6 +45,7 @@
|
|||||||
"jquery": "^3.6.0",
|
"jquery": "^3.6.0",
|
||||||
"m3-utils": "^0.1.0",
|
"m3-utils": "^0.1.0",
|
||||||
"sass": "^1.38.1",
|
"sass": "^1.38.1",
|
||||||
|
"slick-carousel": "^1.8.1",
|
||||||
"terser-webpack-plugin": "^5.1.4"
|
"terser-webpack-plugin": "^5.1.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@ -19345,6 +19346,7 @@
|
|||||||
"m3-utils": "^0.1.0",
|
"m3-utils": "^0.1.0",
|
||||||
"prettier": "^2.3.2",
|
"prettier": "^2.3.2",
|
||||||
"sass": "^1.38.1",
|
"sass": "^1.38.1",
|
||||||
|
"slick-carousel": "^1.8.1",
|
||||||
"terser-webpack-plugin": "^5.1.4",
|
"terser-webpack-plugin": "^5.1.4",
|
||||||
"webpack": "^5.51.1",
|
"webpack": "^5.51.1",
|
||||||
"webpack-merge": "^5.8.0"
|
"webpack-merge": "^5.8.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user