Skip to content
Snippets Groups Projects
Commit a4a72d7c authored by Florian Will's avatar Florian Will
Browse files

[TASK] fixed spacin in header

parent b3ceca8e
No related branches found
No related tags found
1 merge request!64Feature 5168 unify root page selector
......@@ -73,7 +73,7 @@
</div>
<f:render section="iconButtons" />
</div>
<div class="module-docheader-bar-column-right">
<div class="module-docheader-bar-column-right" style="display: flex; align-items: center;">
<a href="https://www.sgalinski.de/" target="_blank" rel="noopener noreferrer"
title="Created by the TYPO3 agency sgalinski">
<img src="{f:uri.resource(path: 'Icons/logo-icon.svg')}" alt="Sgalinski Logo" style="width: 34px; height: 25.75px;" />
......
......@@ -24,7 +24,7 @@
<div class="module-docheader-bar-column-left">
</div>
<div class="module-docheader-bar-column-right">
<div class="module-docheader-bar-column-right" style="display: flex; align-items: center;">
<a href="https://www.sgalinski.de/" target="_blank" rel="noopener noreferrer"
title="Created by the TYPO3 agency sgalinski">
<img src="{f:uri.resource(path: 'Icons/logo-icon.svg')}" alt="Sgalinski Logo"
......
<f:for each="{buttons}" as="buttonGroup">
<f:if condition="{buttonGroup -> f:count()} > 1">
<f:then>
<div class="btn-group" role="group" aria-label="">
<f:for each="{buttonGroup}" as="button">
{button -> f:format.raw()}
</f:for>
</div>
</f:then>
<f:else>
{buttonGroup.0 -> f:format.raw()}
</f:else>
</f:if>
</f:for>
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
<div class="btn-toolbar" role="toolbar" aria-label="">
<f:for each="{buttons}" as="buttonGroup">
<f:if condition="{buttonGroup -> f:count()} > 1">
<f:then>
<div class="btn-group" role="group" aria-label="">
<f:for each="{buttonGroup}" as="button">
{button -> f:format.raw()}
</f:for>
</div>
</f:then>
<f:else>
{buttonGroup.0 -> f:format.raw()}
</f:else>
</f:if>
</f:for>
</div>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment