feat(svg_icon): Add chevron_down to footer & menu

This commit is contained in:
2025-12-31 15:53:14 +01:00
parent e6be4f4323
commit 411e20133e
6 changed files with 35 additions and 6 deletions

View File

@ -21,9 +21,14 @@
>
<span class="align-self-center">{$node.label}</span>
{if $node.children|count}
{capture name="svg_output"}{svg_icon file='chevron_down.svg'}{/capture}
{if $smarty.capture.svg_output}
<span class="d-none d-md-block pl-1" style="margin-bottom: 3px;">
{svg_icon file='chevron_down.svg' }
{$smarty.capture.svg_output nofilter}
</span>
{else}
<i class="material-icons d-block"></i>
{/if}
{/if}
</a>
{if $node.children|count}