forked from projects/fipamo
bfb0873f5f
Started cleaning up responsive styles for the site starting with the Settings section. Still needs some tweaking but the structure for that section is in so it's just a matter of police. Some changes need to be made to the main nav as reduced viewport throws off the alignment.
23 lines
548 B
Twig
23 lines
548 B
Twig
<div role="menu">
|
|
{% if title == "Settings" %}
|
|
{% apply spaceless %}
|
|
{{ include("dash/partials/submenu_settings.twig") }}
|
|
{% endapply %}
|
|
{% endif %}
|
|
<a id="settings" href="/dashboard/settings" title="settings">
|
|
<button>
|
|
<i class="ti ti-home-cog"></i>
|
|
</button>
|
|
</a>
|
|
<a id="navigation" href="/dashboard/navigation" title="edit navigation">
|
|
<button>
|
|
<i class="ti ti-menu-2"></i>
|
|
</button>
|
|
</a>
|
|
<a id="navigation" href="/dashboard/logout" title="log out">
|
|
<button>
|
|
<i class="ti ti-logout"></i>
|
|
</button>
|
|
</a>
|
|
</div>
|