The quantity (+ and -) buttons on our cart are not high enough contrast from the background to be easily seen. How can we change this so that they are more clearly recognizable?
Site Test URL: https://native-sons-roasters-3430.myshopify.com/
Out of the Box Flex theme.
Code at Snippets/ quantity-box.liquid :
{% if settings.qty_box_style == 'stacked' %}
{% assign icon-plus = 'up-caret' %}
{% assign icon-minus = 'down-caret' %}
{% else %}
{% assign icon-plus = 'plus' %}
{% assign icon-minus = 'minus' %}
{% endif %}
{% if item.quantity %}
{% assign value = item.quantity %}
{% else %}
{% assign value = 1 %}
{% endif %}
{%
render 'icon',
name: icon-minus,
%}
{%
render 'icon',
name: icon-plus,
%}
Thank you




