Hello,
I am using the Dawn Theme and I created a theme block (Icon with text).
Here is my code:
{%- when 'text_with_icon' -%}
{{ block.settings.text }}
{
"name": "Text with icon",
"type": "text_with_icon",
"settings": [
{
"type": "text",
"id": "text",
"label": "Texte"
},
{
"type": "image_picker",
"id": "icon",
"label": "Icone"
}
]
},
The problem is that the image (icon) is shown very blurry.
I tried to do the same block using Custom liquid and I don’t have this blur problem.
Here is the CSS of the Custom liquid:
.custom-text img {
height: 18px;
width: 18px;
vertical-align: middle;
}
Do you have any idea how to solve this ?
Thanks for your support

