Skip to content

Commit

Permalink
Adjust color contrast for Vendor on the cart page (#1462)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoboludo authored Mar 16, 2022
1 parent 1a858ac commit 7dd433a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions assets/component-cart-items.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
}

.cart-item__name {
color: rgb(var(--color-foreground));
text-decoration: none;
display: block;
}
Expand Down Expand Up @@ -193,10 +192,6 @@ cart-remove-button .icon-remove {
display: none;
}

.product-option {
color: rgba(var(--color-foreground), 0.7);
}

.product-option + .product-option {
margin-top: 0.4rem;
}
Expand Down
2 changes: 1 addition & 1 deletion sections/main-cart-items.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@

<td class="cart-item__details">
{%- if section.settings.show_vendor -%}
<p class="caption-with-letter-spacing light">{{ item.product.vendor }}</p>
<p class="caption-with-letter-spacing">{{ item.product.vendor }}</p>
{%- endif -%}

<a href="{{ item.url }}" class="cart-item__name h4 break">{{ item.product.title | escape }}</a>
Expand Down

0 comments on commit 7dd433a

Please sign in to comment.