Remove arrows in mobilenav first level

This commit is contained in:
Björn Fromme
2022-03-14 10:52:11 +01:00
parent 7969e94967
commit 2bb5c82fde
@@ -46,22 +46,10 @@
<ul class="divide-y divide-ep-primary-dark">
<f:for each="{topnav}" as="topitem">
<li>
<a class="flex justify-between items-center text-xl uppercase font-bold text-white hover:text-white focus:text-white py-2 px-4 hover:bg-ep-primary-light{f:if(condition: topitem.active, then: ' bg-ep-primary-light')}"
<a class="block text-xl uppercase font-bold text-white hover:text-white focus:text-white py-2 px-4 hover:bg-ep-primary-light{f:if(condition: topitem.active, then: ' bg-ep-primary-light')}"
href="{topitem.link}"{f:if(condition: '{topitem.data.doktype} == 3', then: ' target="_blank"')}
title="{topitem.title}">
<span>
{topitem.title}
</span>
<svg class="h-6 w-6 transform text-white">
<f:if condition="{topitem.active}">
<f:then>
<use href="{f:uri.image(src: 'EXT:ep_theme/Resources/Public/images/icons_sprite.svg')}#icon-chevron-down"></use>
</f:then>
<f:else>
<use href="{f:uri.image(src: 'EXT:ep_theme/Resources/Public/images/icons_sprite.svg')}#icon-chevron-right"></use>
</f:else>
</f:if>
</svg>
</a>
<f:if condition="{topitem.active}">
<f:render section="Subnav" arguments="{_all}"/>