Skip to content
Snippets Groups Projects
Commit a7c436ca authored by Justin Toupin's avatar Justin Toupin
Browse files

Issue #3487531: Icons are duplicated in the component menu

parent 9a7a8996
No related branches found
No related tags found
3 merge requests!92#3492298: Entity browsers won't close.,!89#3489988: Update sidebar toggle.,!78Fix template to prevent icons from duplicating
......@@ -35,7 +35,13 @@
{% for type in types.content %}
<div class="lpb-component-list__item type-{{type.id}}">
<a{{type.link_attributes.setAttribute('href',type.url)}}>
{% if type.image %}<img src="{{ type.image }}" alt=""/>
{% if type.image %}
<style>
.lpb-component-list__item.type-{{ type.id }} a::before {
background: url({{ type.image }});
background-size: cover;
}
</style>
{% endif %}
{{ type.label }}</a>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment