Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions assets/custom.css.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -431,4 +431,89 @@ body {
box-shadow: 0 1px var(--input-color) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
--size: calc(var(--size-field, 0.25rem) * 10);
}
@media (min-width: 768px) {
.footer-main {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
grid-template-areas:
"brand col1 col2 col3 col4"
"bottom bottom bottom bottom bottom";
gap: 3rem;
}
.footer-brand {
grid-area: brand;
border-right: 1px solid rgba(255,255,255,0.2);
padding-right: 2.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.footer-col-1 { grid-area: col1; }
.footer-col-2 { grid-area: col2; }
.footer-col-3 { grid-area: col3; }
.footer-col-4 { grid-area: col4; }
.footer-bottom {
grid-area: bottom;
border-top: 1px solid rgba(255,255,255,0.2);
padding-top: 2.5rem;
}
.footer-bottom-inner {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 6rem;
}
}
.footer-bottom .container,
.footer-copyright.container {
max-width: 100%;
}

.footer-title {
font-weight: 600;
margin-bottom: 0.75rem;
}
.social-icons {
display: flex;
gap: 1rem;
align-items: center;
}
.shopify-payments,
.footer-payments ul {
display: flex;
gap: 0.75rem;
align-items: center;
}
.footer-cta {
background: #5b3df5;
color: white;
padding: 0.75rem 1.5rem;
font-weight: 600;
border-radius: 4px;
text-decoration: none;
width: fit-content;
}
.footer-bottom-title,
.footer-title {
margin-bottom: 0.20rem;
font-weight: 600;
}
.footer-navigation {
display: contents;
}
@media (max-width: 767px) {
.footer-main {
display: grid;
grid-template-columns: 1fr;
gap: 0,5rem;
}
.footer-brand {
border-right: none;
padding-right: 0;
}
.footer-links {
border-bottom: 1px solid rgba(255,255,255,0.15);
padding: 1rem 0;
}

/**/
77 changes: 64 additions & 13 deletions config/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@
],
"type": "select"
}
]
],
"default": null
},
{
"key": "colors",
Expand Down Expand Up @@ -298,7 +299,8 @@
],
"type": "select"
}
]
],
"default": null
},
{
"key": "social_media",
Expand Down Expand Up @@ -336,7 +338,8 @@
"key": "social_linkedin_url",
"type": "text"
}
]
],
"default": null
},
{
"key": "header",
Expand Down Expand Up @@ -409,7 +412,8 @@
"key": "headerTopURL",
"type": "text"
}
]
],
"default": null
},
{
"key": "homepage",
Expand Down Expand Up @@ -841,7 +845,8 @@
"key": "homepage_blog",
"type": "blog"
}
]
],
"default": null
},
{
"key": "pages",
Expand Down Expand Up @@ -894,7 +899,8 @@
],
"type": "select"
}
]
],
"default": null
},
{
"key": "blogs",
Expand All @@ -911,7 +917,8 @@
"key": "articleRelated",
"type": "checkbox"
}
]
],
"default": null
},
{
"key": "products",
Expand Down Expand Up @@ -959,7 +966,8 @@
"key": "ppRelatedProducts",
"type": "checkbox"
}
]
],
"default": null
},
{
"key": "collections",
Expand Down Expand Up @@ -1025,7 +1033,8 @@
],
"type": "select"
}
]
],
"default": null
},
{
"key": "shop",
Expand Down Expand Up @@ -1066,7 +1075,8 @@
"key": "coPaymentCard",
"type": "checkbox"
}
]
],
"default": null
},
{
"key": "restricted",
Expand Down Expand Up @@ -1341,7 +1351,8 @@
"key": "closedSocialTrue",
"type": "checkbox"
}
]
],
"default": null
},
{
"key": "footer",
Expand Down Expand Up @@ -1426,8 +1437,48 @@
"caption": "Button text",
"key": "footerButtonText",
"type": "text"
},
{
"caption": "Payment options",
"key": "footer_payment_header",
"type": "header"
},
{
"caption": "Show payment options",
"default": false,
"key": "footer_payment_enable",
"type": "checkbox"
},
{
"caption": "Payment text",
"default": "We accept",
"key": "footer_payment_text",
"type": "text"
},
{
"caption": "Payment methods",
"key": "footer_payment_methods",
"settings": [
{
"caption": "Payment name",
"key": "name",
"type": "text"
},
{
"caption": "Logo",
"key": "logo",
"type": "image"
},
{
"caption": "Logo alt text",
"key": "alt",
"type": "text"
}
],
"type": "struct"
}
]
],
"default": null
}
]
}
}
Loading