Hi,
I’m trying to remove the login/logout text in my theme and replace them with the an icon.
I have added the icon to my header (see code below) but I can’ seem to target it in order to make it smaller.
Can anyone help please? Thank you!
{% if shop.customer_accounts_enabled %}
{% if customer %}
- {{- 'layout.customer.log_out' | t -}}
{% if customer.name != blank %}
- {{- customer.name -}}
{% endif %}
{% else %}
- {{- 'layout.customer.log_in' | t -}}
{% endif %}
{% endif %}


