Use different colors to highlight the roadmap

This commit is contained in:
Patrick Jentsch 2020-11-02 16:33:28 +01:00
parent 5bc2501334
commit 2e4983a8db

View File

@ -80,8 +80,8 @@
{% block navbar %}
<div class="navbar-fixed">
<nav class="nav-extended primary-color">
<div class="nav-wrapper">
<nav class="nav-extended">
<div class="nav-wrapper primary-color">
{% if current_user.is_authenticated %}
<a href="#" data-target="sidenav" class="sidenav-trigger"><i class="material-icons">menu</i></a>
{% endif %}
@ -98,10 +98,10 @@
{% endif %}
</ul>
</div>
<div class="nav-content">
<div class="nav-content secondary-color">
{% block nav_content %}{% endblock nav_content %}
{% if current_user.is_authenticated %}
<a class="btn-floating btn-large halfway-fab modal-trigger tooltipped waves-effect waves-light" data-tooltip="Roadmap" href="#roadmap-modal"><i class="material-icons">explore</i></a>
<a class="btn-floating btn-large halfway-fab modal-trigger pink tooltipped waves-effect waves-light" data-tooltip="Roadmap" href="#roadmap-modal"><i class="material-icons">explore</i></a>
{% endif %}
</div>
</nav>