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
{% if template contains 'collection' %} | |
<link rel="canonical" href="{{ shop.url }}{{ collection.url }}" /> | |
{% elsif canonical_url != blank %} | |
<link rel="canonical" href="{{ canonical_url }}"> | |
{% endif %} |
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
/* CSS - change Add to Cart button color */ | |
.product-clip__btn, | |
.product__submit__buttons .btn--add-to-cart { | |
background-color: var(--COLOR-PRIMARY); | |
border: 1px solid var(--COLOR-PRIMARY); | |
color: var(--COLOR-PRIMARY-OPPOSITE); | |
} | |
.product-clip__btn:hover, .product-clip__btn:focus, | |
.product__submit__buttons .btn--add-to-cart:hover, .product__submit__buttons .btn--add-to-cart:focus { | |
background-color: var(--COLOR-PRIMARY-HOVER); |
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
Low inventory <span class=hidden>{{ inventory }}</span> |
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
@media only screen and (max-width: 768px) { | |
.template-password .input-group--inner-button { | |
display: flex; | |
flex-direction: column; | |
} | |
.template-password .input-group-button{ | |
width: 100%; | |
} | |
.template-password .input-group .btn, | |
.template-password .input-group .input-group-field{ |
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
.swatch__button input:checked~label:after, .swatch__label[aria-selected=true]:after{ | |
--swatch-offset: 3px; | |
top: calc(var(--swatch-offset) * -1); | |
left: calc(var(--swatch-offset) * -1); | |
width: calc(var(--swatch-size) + var(--swatch-offset) * 2); | |
height: calc(var(--swatch-size) + var(--swatch-offset) * 2); | |
border-color: var(--secondary); | |
} | |
.product__grid__info .grid__swatch__hover, | |
.grid__swatch__container{ |
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 }} |