fixed palto icon being invisible

This commit is contained in:
Faraphel 2024-01-16 21:59:23 +01:00
parent c7d2700071
commit 264bfb792c
2 changed files with 4 additions and 8 deletions

View file

@ -15,10 +15,6 @@ nav {
font-size: 150%; font-size: 150%;
} }
#navigation-icon {
width: 20%;
}
#navigation-title { #navigation-title {
font-size: 300%; font-size: 300%;
} }

View file

@ -19,12 +19,12 @@
{% endblock %} {% endblock %}
</div> </div>
<div id="navigation-buttons"> <div id="navigation-buttons">
<a href="{% url "Palto:homepage" %}">Home</a> <a href="{% url "Palto:homepage" %}">Accueil</a>
{% if request.user.is_authenticated %} {% if request.user.is_authenticated %}
<a href="{% url "Palto:my_profile" %}">Profile</a> <a href="{% url "Palto:my_profile" %}">Profil</a>
<a href="{% url "Palto:logout" %}">Logout</a> <a href="{% url "Palto:logout" %}">Déconnexion</a>
{% else %} {% else %}
<a href="{% url "Palto:login" %}">Login</a> <a href="{% url "Palto:login" %}">Connexion</a>
{% endif %} {% endif %}
</div> </div>
</nav> </nav>