Task: Increase clickable area in footer navigation

Trello #1095
This commit is contained in:
Björn Fromme
2023-08-03 11:56:55 +02:00
parent 4ab19f47a8
commit e354e2e055
@@ -12,16 +12,16 @@
<f:if condition="{settings.footerNavPid}">
<f:for each="{footernav}" as="menuheader">
<div>
<span class="headline--4 text-white">
<span class="headline--3 text-white">
{menuheader.title}
</span>
<f:if condition="{menuheader.children}">
<ul class="list-disc text-white mb-0 pl-4">
<ul class="text-white mb-0">
<f:for each="{menuheader.children}" as="submenuitem">
<li>
<f:link.typolink parameter="{submenuitem.link}"
title="{submenuitem.linktext}"
class="text-white">
class="inline-block py-2 text-lg leading-none text-white">
{submenuitem.title}
</f:link.typolink>
</li>