This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"colors":[ | |
{"Demo Image": "blank.svg"}, | |
{"stripe": "stripe.svg"}, | |
{"ink": "#696969"}, | |
{"ash": "#a3a3a3"}, | |
{"sky": "#9bbaed"}, | |
{"pop": "#e43e23"}, | |
{"red": "#d13b38"}, | |
{"jet": "#000000"}, | |
{"gum": "#eb5799"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://a.klaviyo.com/media/js/onsite/onsite.js"></script> | |
<script> | |
var klaviyo = klaviyo || []; | |
klaviyo.init({ | |
account: "UU6Fvf", | |
list: "UGSQKU", | |
platform: "shopify" | |
}); | |
klaviyo.enable("backinstock",{ | |
trigger: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign product = all_products[section.settings.home_product] %} | |
<div class="product__block__title" style="--PB: 20px;"> | |
<div class="product__headline"> | |
<div class="product__title__wrapper"> | |
<h1 class="product__title heading-size-9"> | |
<a href="{{ product.url }}">{{ product.title }}</a> | |
</h1> | |
</div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pswp__button{ | |
height: auto; | |
} | |
.pswp__button .icon-theme { | |
pointer-events: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="product__block__title" style="--PB: 16px;"> | |
<div class="product__headline"> | |
<div class="product__title__wrapper"> | |
<h1 class="product__title heading-size-4"> | |
{% assign title = product.title | split: "|" %} | |
{{ title.first }} | |
<br> | |
{% if title.size == 2 %} | |
{{ title.last }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign author_handle = article.author | handle %} | |
"url": {{ shop.url | append: '/pages/' | append: author_handle | json }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- comment -%} | |
Uses the shopify permalink to generate the cart link | |
https://help.shopify.com/en/manual/products/details/cart-permalink#creating-a-cart-permalink | |
Example: | |
https://my-shop-name.myshopify.com/cart/36485954240671:1 | |
{%- endcomment -%} | |
{%- if product.selling_plan_groups.size == 0 -%} | |
<div x-data="{sectionId: '{{ section.id }}', productId: '{{ product.handle }}', ...handleClick}"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.rte h2:not([class]) { | |
padding-bottom: var(--inner); | |
position: relative; | |
margin-bottom: var(--space-4); | |
} | |
.rte h2:not([class]):after { | |
content: ""; | |
margin: auto; | |
width: 30px; | |
height: 3px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.section-without-title .flickity-force-arrows-top [data-carousel] .flickity-button{ | |
top: var(--buttons-top); | |
bottom: initial; | |
background: #fff; | |
} | |
.section-without-title .flickity-force-arrows-top [data-carousel] .flickity-button:after{ | |
content: ''; | |
padding: var(--gutter) | |
} | |
.section-without-title:not(.not-moved-arrows):not(.hidden-arrows):not(.section-without-title--skip) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.button.outline { | |
--btn-text: var(--text); | |
--btn-bg-hover: var(--hairline); | |
--btn-bg: rgb(255 255 255 / 0%); | |
font-family: var(--TYPE-STACK-BUTTON); | |
font-style: var(--TYPE-STYLE-BUTTON); | |
font-weight: var(--TYPE-WEIGHT-BUTTON); | |
text-transform: var(--FONT-BUTTON-TRANSFORM); | |
letter-spacing: var(--FONT-BUTTON-LETTER-SPACING); | |
display: inline-block; |