forked from M3-Academy/m3-academy-template-checkout
development #12
@ -1,3 +1,4 @@
|
||||
import { data } from "jquery";
|
||||
import { waitElement } from "m3-utils";
|
||||
|
||||
export default class Footer {
|
||||
@ -7,34 +8,172 @@ export default class Footer {
|
||||
|
||||
async init() {
|
||||
await this.selectors();
|
||||
// this.onUpdate();
|
||||
this.onUpdate();
|
||||
|
||||
this.insertImagesPayments()
|
||||
this.insertImagesDevelopedBy();
|
||||
}
|
||||
|
||||
async selectors() {
|
||||
//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
|
||||
this.checkoutVazio = await waitElement(".empty-cart-content");
|
||||
this.footerCheckoutWrapper = await waitElement(".footerCheckout__wrapper");
|
||||
this.footerCheckoutPayments = await waitElement(".footerCheckout__payments");
|
||||
this.footerCheckoutVtexPci = await waitElement(".footerCheckout__vtexpci");
|
||||
this.footerCheckoutDevelopedBy = await waitElement(".footerCheckout__developedBy");
|
||||
this.footerCheckoutShelf = await waitElement(".footerCheckout__prateleira");
|
||||
this.cartTitle = await waitElement("#cart-title");
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
onUpdate() {
|
||||
//Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
|
||||
//Função qu 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 title = this.cartTitle;
|
||||
let shelf = this.footerCheckoutShelf;
|
||||
let config = { childList: true, attributes: true };
|
||||
|
||||
if (window.location.href === "https://m3academy.myvtex.com/checkout/#/cart" && this.checkoutVazio.style.display == "none") {
|
||||
title.style.visibility = "initial";
|
||||
shelf.classList.remove("none");
|
||||
this.createfooterShelf();
|
||||
} else {
|
||||
title.style.visibility = "hidden"
|
||||
shelf.classList.add("none");
|
||||
}
|
||||
window.addEventListener("hashchange", () => {
|
||||
if (window.location.hash == "#/cart" && this.checkoutVazio.style.display == "none") {
|
||||
title.style.visibility = "initial";
|
||||
shelf.classList.remove("none")
|
||||
this.createfooterShelf();
|
||||
} else if (window.location.hash != "#/cart") {
|
||||
title.style.visibility = "hidden"
|
||||
shelf.classList.add("none");
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
let observer = new MutationObserver((mutations) => {
|
||||
mutations.forEach(function (mutation) {
|
||||
console.log(mutation.type);
|
||||
mutations.forEach((mutation) => {
|
||||
if (target.style.display == "none" && window.location.hash == "#/cart") {
|
||||
title.style.visibility = "initial";
|
||||
shelf.classList.remove("none");
|
||||
this.createfooterShelf();
|
||||
} else {
|
||||
title.style.visibility = "hidden"
|
||||
shelf.classList.add("none");
|
||||
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
observer.observe(target, config);
|
||||
|
||||
|
||||
}
|
||||
async addCarrossel() {
|
||||
const elemento = await waitElement("#my-element");
|
||||
$(elemento).slick({
|
||||
const elementSlick = document.querySelector(".footerCheckout__prateleira__list");
|
||||
|
||||
$(elementSlick).slick({
|
||||
slidesToShow: 4,
|
||||
slidesToScroll: 1,
|
||||
infinite: true,
|
||||
arrows: true,
|
||||
responsive: [
|
||||
{
|
||||
breakpoint: 1025,
|
||||
settings: {
|
||||
slidesToShow: 3,
|
||||
slidesToScroll: 1,
|
||||
}
|
||||
},
|
||||
{
|
||||
breakpoint: 491,
|
||||
settings: {
|
||||
slidesToShow: 2,
|
||||
slidesToScroll: 1,
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
insertImagesPayments() {
|
||||
this.footerCheckoutPayments.innerHTML = `
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png" />
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/visaM3Academy.png" />
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/amexM3Academy.png" />
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/eloM3Academy.png" />
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/hiperCardM3Academy.png" />
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/payPalM3Academy.png" />
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/boletoM3Academy.png" />
|
||||
`;
|
||||
this.footerCheckoutVtexPci.innerHTML =
|
||||
` <img src="https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png" />`
|
||||
}
|
||||
insertImagesDevelopedBy() {
|
||||
this.footerCheckoutDevelopedBy.innerHTML = `
|
||||
<li>
|
||||
<a href="https://vtex.com/br-pt/">
|
||||
<span>Powered By</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://agenciam3.com/">
|
||||
<span>Developed By</span>
|
||||
</a>
|
||||
</li>
|
||||
`;
|
||||
}
|
||||
|
||||
async createfooterShelf() {
|
||||
this.footerCheckoutShelf.innerHTML = ``;
|
||||
this.footerCheckoutShelf.innerHTML += `
|
||||
<h2 class="footerCheckout__prateleira__sugestionTitle" >Você também pode gostar:</h2>
|
||||
<ul class="footerCheckout__prateleira__list"> </ul>
|
||||
`;
|
||||
|
||||
const requestApi = await fetch("https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319")
|
||||
.then((response) => response.json())
|
||||
|
||||
requestApi.forEach((produtos) => {
|
||||
|
||||
const getImage = produtos.items[0].images[0].imageUrl;
|
||||
const getNameProduto = produtos.productName;
|
||||
const getLink = produtos.link
|
||||
const footerCheckouShielfList = document.querySelector(".footerCheckout__prateleira__list")
|
||||
|
||||
console.log(footerCheckouShielfList);
|
||||
footerCheckouShielfList.innerHTML += `
|
||||
<li class="footerCheckout__card">
|
||||
<div class="footerCheckout__container">
|
||||
<img class="footerCheckout__container__img" src="${getImage}" alt="" />
|
||||
<div class="footerCheckout__subContainer">
|
||||
<h3 class="footerCheckout__subContainer__name">${getNameProduto}</h3>
|
||||
<ul class="footerCheckout__subContainer__sku">
|
||||
${produtos.items.map(sku => `<li class="footerCheckout__subContainer__sku__skuName">${sku.name}</li>`
|
||||
).join("")}
|
||||
</ul>
|
||||
<a class="footerCheckout__subContainer__link" href="${getLink}">ver produto</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
`;
|
||||
});
|
||||
this.addCarrossel();
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -9,13 +9,257 @@ export default class Header {
|
||||
async init() {
|
||||
await this.selectors();
|
||||
console.log(this.item);
|
||||
this.createProgressBar();
|
||||
await this.progressBarProgress();
|
||||
}
|
||||
|
||||
async selectors() {
|
||||
this.item = await waitElement("#my-element", {
|
||||
this.item = await waitElement("#progressBar", {
|
||||
//#my-element pode ser a class ou o id do elemento html qeu vocÊ quer pegar
|
||||
timeout: 5000, // vai esperar 5 segundos antes de rejeitar a promise
|
||||
interval: 1000, // vai verificar a cada 1 segundo se o elemento existe
|
||||
});
|
||||
|
||||
this.header = await waitElement(".headerCheckout");
|
||||
this.progressBar = await waitElement("#progressBar");
|
||||
}
|
||||
createProgressBar() {
|
||||
if (this.progressBar && window.innerWidth > 1024) {
|
||||
this.progressBar.innerHTML = `
|
||||
<ul>
|
||||
<li>
|
||||
<div class="containerLi">
|
||||
<div>
|
||||
<p class="progress-bar-text meu-carrinho " >Meu carrinho</p>
|
||||
<p id="progress-bar-circle-1" class="progress-bar-circle-1"></p>
|
||||
<p class="progress-bar-line-1"></p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="central">
|
||||
<div class="containerLi">
|
||||
<div>
|
||||
<p class="progress-bar-text dados-pessoais " >Dados Pessoais</p>
|
||||
<p id="progress-bar-circle-2" class="progress-bar-circle-2"></p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="containerLi">
|
||||
<div>
|
||||
<p class="progress-bar-text pagamento" >Pagamento</p>
|
||||
<p id="progress-bar-circle-3" class="progress-bar-circle-3"></p>
|
||||
<p class="progress-bar-line-2"></p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
`;
|
||||
}
|
||||
if (this.progressBar && window.innerWidth <= 1024) {
|
||||
this.progressBar.innerHTML = ``;
|
||||
}
|
||||
}
|
||||
async progressBarProgress() {
|
||||
if (this.progressBar && window.innerWidth > 1024) {
|
||||
const progressBarList = document.querySelectorAll("#progressBar ul li");
|
||||
progressBarList.forEach((li) => {
|
||||
if (window.location.href === "https://m3academy.myvtex.com/checkout/#/cart") {
|
||||
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||
li.children[0].children[0].children["progress-bar-circle-1"].classList.add(
|
||||
"active"
|
||||
);
|
||||
console.log("ativou 1");
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.remove("active");
|
||||
console.log("removeu 2");
|
||||
}
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.remove("active");
|
||||
console.log("removeu 3");
|
||||
}
|
||||
}
|
||||
} else if (
|
||||
window.location.href === "https://m3academy.myvtex.com/checkout/#/email" ||
|
||||
window.location.href === "https://m3academy.myvtex.com/checkout/#/profile" ||
|
||||
window.location.href === "https://m3academy.myvtex.com/checkout/#/shipping"
|
||||
) {
|
||||
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.remove("active");
|
||||
}
|
||||
|
||||
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.add("active");
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (
|
||||
window.location.href === "https://m3academy.myvtex.com/checkout/#/payment"
|
||||
) {
|
||||
|
||||
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
console.log("remove 1");
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||
li.children[0].children[0].children["progress-bar-circle-3"].classList.add(
|
||||
"active"
|
||||
);
|
||||
}
|
||||
}
|
||||
window.addEventListener("hashchange", () => {
|
||||
|
||||
if (window.location.hash == "#/cart") {
|
||||
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.add("active");
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
} else if (
|
||||
window.location.hash == "#/email" ||
|
||||
window.location.hash == "#/profile" ||
|
||||
window.location.hash == "#/shipping"
|
||||
) {
|
||||
|
||||
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
|
||||
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.add("active");
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.remove("active");
|
||||
}
|
||||
|
||||
}
|
||||
} else if (window.location.hash == "#/payment") {
|
||||
|
||||
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
console.log("remove 1 hash");
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-1"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||
if (
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.contains("active")
|
||||
) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-2"
|
||||
].classList.remove("active");
|
||||
}
|
||||
}
|
||||
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||
li.children[0].children[0].children[
|
||||
"progress-bar-circle-3"
|
||||
].classList.add("active");
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,4 +2,5 @@
|
||||
@import "./lib/slick";
|
||||
@import "./partials/header";
|
||||
@import "./partials/footer";
|
||||
@import "./checkout/checkout.scss";
|
||||
@import "./partials/prateleira";
|
||||
@import "./checkout/checkout.scss";
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,62 @@ body .container-main.container-order-form .orderform-template.active {
|
||||
margin-right: 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.orderform-template-holder {
|
||||
width: 66.1132%;
|
||||
|
||||
@media (max-width: 1025px) {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.row-fluid .span6 {
|
||||
|
||||
@media (max-width: 1025px) {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
.payment-group-item {
|
||||
@media (max-width: 1025px) {
|
||||
width: 99.81% !important;
|
||||
}
|
||||
}
|
||||
|
||||
.steps-view {
|
||||
width: 60%;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
@media (max-width: 1025px) {
|
||||
width: 96.77% !important;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
form.form-step.box-new.row-fluid {
|
||||
// top: 0;
|
||||
// position: relative;
|
||||
// width: 98%;
|
||||
|
||||
// @media (max-width: 1024px) {
|
||||
// top: 0;
|
||||
// }
|
||||
|
||||
&::before {
|
||||
min-height: 48px;
|
||||
content: "Solicitamos apenas informações necessárias para realização da sua compra, sem compromenter seus dados.";
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
width: 95%;
|
||||
color: $color-gray2;
|
||||
}
|
||||
}
|
||||
|
||||
p.link.link-gift-card {
|
||||
display: none !important;
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
.empty-cart {
|
||||
font-family: $font-family;
|
||||
|
||||
&-content {
|
||||
color: $color-black;
|
||||
text-align: center;
|
||||
@ -10,29 +11,53 @@
|
||||
}
|
||||
|
||||
&-title {
|
||||
font-size: 20px;
|
||||
|
||||
font-family: $font-family;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
line-height: 33px;
|
||||
|
||||
text-transform: uppercase;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
font-size: 48px;
|
||||
line-height: 65px
|
||||
}
|
||||
}
|
||||
|
||||
&-links {
|
||||
.link-choose-products {
|
||||
background: $color-black;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
background: none;
|
||||
border: 1px solid;
|
||||
border-radius: 0;
|
||||
transition: ease-in 0.22s all;
|
||||
outline: none;
|
||||
font-family: $font-family;
|
||||
font-family: $font-family-secundary ;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
letter-spacing: 0.05em;
|
||||
color: $color-white;
|
||||
color: $color-black2;
|
||||
text-transform: uppercase;
|
||||
padding: 16px 64px;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
font-size: 48px;
|
||||
line-height: 65px;
|
||||
padding: 16px 32px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: lighten($color-black, 5);
|
||||
color: $color-white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.empty-cart-message {
|
||||
display: none;
|
||||
}
|
@ -9,13 +9,19 @@ html {
|
||||
}
|
||||
|
||||
footer .footerCheckout__wrapper {
|
||||
width: 94.9734%;
|
||||
// width: 94.9734%;
|
||||
width: 100%;
|
||||
margin: auto auto 0 auto;
|
||||
}
|
||||
|
||||
footer .footerCheckout__prateleira,
|
||||
header {
|
||||
width: 79.53125%;
|
||||
margin: 0 auto;
|
||||
|
||||
@media (max-width:1024px) {
|
||||
width: 98%;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
@ -47,9 +53,14 @@ body {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.container-order-form,
|
||||
.container-cart {
|
||||
width: 80%;
|
||||
|
||||
@media (max-width:1024px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -68,18 +79,30 @@ body {
|
||||
|
||||
#cart-title,
|
||||
#orderform-title {
|
||||
color: $color-gray2;
|
||||
color: $color-black2;
|
||||
font-family: $font-family;
|
||||
font-weight: 500;
|
||||
font-size: 36px;
|
||||
line-height: 42px;
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
line-height: 33px;
|
||||
margin: 40px 0 30px;
|
||||
letter-spacing: 0.1em;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
font-size: 48px;
|
||||
line-height: 65px;
|
||||
}
|
||||
|
||||
@include mq(md, max) {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
margin-left: 20px;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
@ -124,3 +147,56 @@ body {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
body .container-order-form {
|
||||
@media (max-width: 1024px) {
|
||||
|
||||
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// .step.accordion-group.client-profile-data.active {
|
||||
// @media (max-width: 1025px) {
|
||||
// width: 93.34%;
|
||||
// }
|
||||
// }
|
||||
|
||||
// .step.accordion-group.client-profile-data.active {
|
||||
// @media (max-width: 1025px) {
|
||||
// width: 93.34%;
|
||||
// }
|
||||
// }
|
||||
|
||||
.row-fluid div#shipping-data {
|
||||
@media (max-width: 1025px) {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
body .container-main.container-order-form .orderform-template.active .mini-cart {
|
||||
@media (max-width: 1025px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
body .container-main.container-order-form .orderform-template.active .mini-cart {
|
||||
@media (max-width: 1025px) {
|
||||
float: none;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.checkout-container .row-fluid.orderform-template.span12.active {
|
||||
@media (max-width: 1025px) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
@ -13,7 +13,9 @@
|
||||
-ms-touch-action: pan-y;
|
||||
touch-action: pan-y;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
|
||||
}
|
||||
|
||||
.slick-list {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
@ -30,6 +32,7 @@
|
||||
cursor: hand;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-slider .slick-track,
|
||||
.slick-slider .slick-list {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
@ -47,6 +50,8 @@
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
|
||||
|
||||
&:before,
|
||||
&:after {
|
||||
content: "";
|
||||
@ -60,18 +65,30 @@
|
||||
.slick-loading & {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
.slick-slide {
|
||||
float: left;
|
||||
height: 100%;
|
||||
min-height: 1px;
|
||||
outline: none;
|
||||
margin: 0 8px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
margin: 0 8.5px;
|
||||
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
float: right;
|
||||
}
|
||||
|
||||
img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
&.slick-loading img {
|
||||
display: none;
|
||||
}
|
||||
@ -96,26 +113,61 @@
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-arrow {
|
||||
font-size: 0;
|
||||
position: absolute;
|
||||
border: none;
|
||||
width: 13.64px;
|
||||
height: 29.47px;
|
||||
bottom: 43.33%;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 26px;
|
||||
height: 58px;
|
||||
}
|
||||
|
||||
@media (max-width: 490px) {
|
||||
bottom: 48.33%
|
||||
}
|
||||
}
|
||||
|
||||
.slick-prev {
|
||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-mini-M3Academy.svg")
|
||||
no-repeat center center;
|
||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-mini-M3Academy.svg") no-repeat center center;
|
||||
z-index: 4;
|
||||
left: 10px;
|
||||
left: 20px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-M3Academy.svg");
|
||||
}
|
||||
|
||||
@media (max-width: 490px) {
|
||||
left: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-next {
|
||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-right-mini-M3Academy.svg") no-repeat center center;
|
||||
z-index: 4;
|
||||
right: 10px;
|
||||
right: 20px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-right-M3Academy.svg");
|
||||
}
|
||||
|
||||
@media (max-width: 490px) {
|
||||
right: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-arrow.slick-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slick-dots {
|
||||
li {
|
||||
margin: 0.5em;
|
||||
|
||||
button {
|
||||
overflow: hidden;
|
||||
text-indent: 999999999px;
|
||||
@ -123,14 +175,16 @@
|
||||
width: 1em;
|
||||
border-radius: 1em;
|
||||
background-color: #fff;
|
||||
|
||||
:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
&.slick-active button {
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -3,21 +3,64 @@
|
||||
border-top: none;
|
||||
color: $color-gray2;
|
||||
|
||||
width: 100%;
|
||||
margin-top: auto;
|
||||
bottom: 0;
|
||||
|
||||
|
||||
&__wrapper {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
border-top: 1px solid;
|
||||
padding: 16px 0;
|
||||
|
||||
.container {
|
||||
width: 94.9734%;
|
||||
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
margin: 0 16px;
|
||||
|
||||
}
|
||||
|
||||
&::before,
|
||||
&::after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&__address {
|
||||
color: $color-gray2;
|
||||
font-family: $font-family;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-weight: 400;
|
||||
font-size: 10px;
|
||||
line-height: 12px;
|
||||
text-transform: capitalize;
|
||||
max-width: 40%;
|
||||
width: 100%;
|
||||
max-width: 269px;
|
||||
|
||||
@media(min-width:2500px) {
|
||||
font-size: 20px;
|
||||
line-height: 27px;
|
||||
max-width: none;
|
||||
width: 537px;
|
||||
min-width: 537px;
|
||||
}
|
||||
|
||||
@media(max-width:1024px) {
|
||||
margin-bottom: 16px;
|
||||
order: 2;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@include mq(md, max) {
|
||||
margin-bottom: 24px;
|
||||
@ -28,14 +71,40 @@
|
||||
&__stamps {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
justify-self: center;
|
||||
list-style: none;
|
||||
width: 100%;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
min-width: 690px;
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
justify-content: flex-start;
|
||||
margin: 0;
|
||||
margin-bottom: 23px;
|
||||
margin-left: -5px;
|
||||
order: 1;
|
||||
}
|
||||
|
||||
@include mq(md, max) {
|
||||
align-self: center;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 34.78px;
|
||||
height: 20px;
|
||||
|
||||
@media(min-width:2500px) {
|
||||
width: 69.63px;
|
||||
height: 39.06px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&__divider {
|
||||
background-color: $color-gray4;
|
||||
display: inline-block;
|
||||
@ -43,16 +112,93 @@
|
||||
margin: 0 8px;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&__vtexpci {
|
||||
img {
|
||||
width: 53px;
|
||||
height: 33px;
|
||||
|
||||
@media(min-width:2500px) {
|
||||
width: 103.52px;
|
||||
height: 64.44px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__developedBy {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
width: 33%;
|
||||
gap: 10.73px;
|
||||
margin: 0;
|
||||
|
||||
@media (max-width:375px),
|
||||
(max-width:1024px) {
|
||||
order: 3;
|
||||
margin-top: 16px;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
li:first-child {
|
||||
|
||||
a {
|
||||
display: flex;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/logoVTEXM3Academy.png") no-repeat center center;
|
||||
background-size: 100%;
|
||||
display: block;
|
||||
min-width: 44.92px;
|
||||
height: 16px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 87.73px;
|
||||
height: 31.25px;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
width: 100%;
|
||||
min-width: 61px;
|
||||
margin-right: 10.12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
li:last-child {
|
||||
margin-left: 16px;
|
||||
|
||||
a {
|
||||
display: flex;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
background: url(" https://agenciamagma.vteximg.com.br/arquivos/logoM3M3Academy.png") no-repeat center center;
|
||||
background-size: 100%;
|
||||
display: block;
|
||||
width: 28.66px;
|
||||
height: 15.65px;
|
||||
|
||||
@media(min-width:2500px) {
|
||||
width: 55.98px;
|
||||
height: 30.55px;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
|
||||
width: 100%;
|
||||
min-width: 61px;
|
||||
margin-right: 10.12px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
@ -66,9 +212,19 @@
|
||||
line-height: 12px;
|
||||
text-decoration: none;
|
||||
|
||||
span {
|
||||
margin-right: 8px;
|
||||
@media(min-width:2500px) {
|
||||
font-size: 18px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
span {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -1,22 +1,231 @@
|
||||
/* _header.scss */
|
||||
.headerCheckout {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid;
|
||||
|
||||
.container {
|
||||
width: auto !important;
|
||||
width: 79.53125%;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
padding: 29px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
width: 96.875%;
|
||||
padding: 16px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 375px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&__wrapper {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@media (max-width: 375px) {
|
||||
margin: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
&__logo {
|
||||
img {
|
||||
height: 52px;
|
||||
width: auto;
|
||||
display: block;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 382.07px;
|
||||
height: 91.2px;
|
||||
}
|
||||
|
||||
@media (max-width: 375px) {
|
||||
height: 33px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
width: 439px;
|
||||
height: 35px;
|
||||
margin: 30px 0;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 1078.68px;
|
||||
height: 67px;
|
||||
margin-right: 132px;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
ul {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
|
||||
&.central {
|
||||
display: flex;
|
||||
|
||||
.containerLi {
|
||||
div {
|
||||
width: 90px;
|
||||
align-items: center;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 179px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.containerLi {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
width: 444px;
|
||||
}
|
||||
|
||||
div {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
|
||||
.progress-bar-text {
|
||||
font-family: $font-family-secundary;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.meu-carrinho {
|
||||
@media (min-width: 2500px) {
|
||||
|
||||
width: 155.3px;
|
||||
}
|
||||
}
|
||||
|
||||
.pagamento {
|
||||
margin-left: 25px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
|
||||
width: 127.86px;
|
||||
}
|
||||
}
|
||||
|
||||
.progress-bar-circle-1,
|
||||
.progress-bar-circle-2,
|
||||
.progress-bar-circle-3 {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border: 1px solid;
|
||||
border-radius: 100%;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
&.active {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.progress-bar-circle-1 {
|
||||
margin-left: 25px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
margin-left: 50px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.progress-bar-circle-3 {
|
||||
margin-left: 50px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
margin-left: 100px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.progress-bar-line-1 {
|
||||
background-color: #000;
|
||||
height: 1px;
|
||||
position: absolute;
|
||||
left: 28%;
|
||||
width: 100%;
|
||||
bottom: 5px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
left: 17.2%;
|
||||
width: 100%;
|
||||
bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.progress-bar-line-2 {
|
||||
background-color: #000;
|
||||
height: 1px;
|
||||
position: absolute;
|
||||
right: 63%;
|
||||
width: 100%;
|
||||
bottom: 5px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
right: 77%;
|
||||
width: 100%;
|
||||
bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__safeBuy {
|
||||
display: flex;
|
||||
|
||||
img {
|
||||
margin-right: 8px;
|
||||
width: 12px;
|
||||
height: 15px;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
width: 29.47px;
|
||||
height: 41.46px;
|
||||
}
|
||||
|
||||
@media (max-width: 375px) {
|
||||
width: 12px;
|
||||
height: 13.11px;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
@ -27,10 +236,15 @@
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
color: $color-gray;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
font-size: 24px;
|
||||
line-height: 33px;
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1 +1,196 @@
|
||||
/* _prateleira.scss */
|
||||
|
||||
|
||||
.footerCheckout__prateleira {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
&__sugestionTitle {
|
||||
font-family: $font-family-secundary;
|
||||
color: $color-black2;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 24px;
|
||||
line-height: 38px;
|
||||
text-align: center;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
font-size: 48px;
|
||||
line-height: 76px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&__list {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
margin: 0 0 56px;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
gap: 16.94px;
|
||||
}
|
||||
|
||||
@media (max-width:490px) {
|
||||
margin: 0 15px 56px;
|
||||
}
|
||||
|
||||
@media (min-width:370px) and (max-width:380px) {
|
||||
|
||||
margin: 0 0 56px;
|
||||
}
|
||||
|
||||
.footerCheckout__card {
|
||||
width: 100%;
|
||||
|
||||
height: 100%;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
min-width: 485.07px;
|
||||
height: 686px;
|
||||
|
||||
}
|
||||
|
||||
@media (min-width:1270px) {
|
||||
min-width: 242px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.footerCheckout__container {
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
height: auto;
|
||||
|
||||
@media (min-width:370px) and (max-width:380px) {
|
||||
width: 164px;
|
||||
}
|
||||
|
||||
li,
|
||||
a {
|
||||
|
||||
font-family: $font-family;
|
||||
background-color: $color-blue2;
|
||||
;
|
||||
color: $color-white;
|
||||
border-radius: 8px;
|
||||
font-weight: 700;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
padding: 5px;
|
||||
|
||||
|
||||
@media (min-width:2500px) {
|
||||
font-size: 26px;
|
||||
line-height: 35px;
|
||||
}
|
||||
}
|
||||
|
||||
&__img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
min-width: 485.07px;
|
||||
height: 485.07px;
|
||||
}
|
||||
|
||||
@media (min-width:370px) and (max-width:376px) {
|
||||
width: 164px;
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:490px) {
|
||||
height: 164px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.footerCheckout__subContainer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
row-gap: 20px;
|
||||
height: auto;
|
||||
width: 100%;
|
||||
|
||||
&__name {
|
||||
margin: 0;
|
||||
font-family: $font-family;
|
||||
color: $color-black2;
|
||||
border-radius: 8px;
|
||||
font-weight: 400;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
|
||||
@media (min-width:2500px) {
|
||||
font-size: 26px;
|
||||
line-height: 35px;
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:490px) {
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&__sku {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@media (max-width:1270px) {
|
||||
flex-wrap: wrap;
|
||||
min-height: 61px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
&__link {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 12px 0;
|
||||
|
||||
&:hover,
|
||||
&:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.none {
|
||||
display: none;
|
||||
}
|
@ -2,23 +2,31 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
|
||||
$font-family: "Open Sans", sans-serif;
|
||||
$font-family-secundary:"Tenor Sans", sans-serif;
|
||||
$font-family-secundary: "Tenor Sans", sans-serif;
|
||||
|
||||
/* Colors */
|
||||
$color-black: #292929;
|
||||
$color-black2: #000000;
|
||||
$color-black3: #58595B;
|
||||
|
||||
$color-white: #fff;
|
||||
|
||||
$color-gray: #6c6c6c;
|
||||
$color-gray2: #7d7d7d;
|
||||
$color-gray2: #7D7D7D;
|
||||
;
|
||||
$color-gray3: #f0f0f0;
|
||||
$color-gray4: #8d8d8d;
|
||||
$color-gray5: #e5e5e5;
|
||||
$color-gray6: #C4C4C4;
|
||||
$color-gray7: #e0e0e0;
|
||||
|
||||
$color-blue: #4267b2;
|
||||
$color-blue2: #00C8FF;
|
||||
|
||||
|
||||
$color-green: #4caf50;
|
||||
|
||||
$color-orange: #f15a31;
|
||||
/* Grid breakpoints */
|
||||
$grid-breakpoints: (
|
||||
xs: 0,
|
||||
@ -26,13 +34,11 @@ $grid-breakpoints: (
|
||||
sm: 576px,
|
||||
md: 768px,
|
||||
lg: 992px,
|
||||
xl: 1200px
|
||||
) !default;
|
||||
xl: 1200px) !default;
|
||||
|
||||
$z-index: (
|
||||
level1: 5,
|
||||
level2: 10,
|
||||
level3: 15,
|
||||
level4: 20,
|
||||
level5: 25
|
||||
) !default;
|
||||
level5: 25) !default;
|
Loading…
Reference in New Issue
Block a user