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%;
}
#navigation-icon {
width: 20%;
}
#navigation-title {
font-size: 300%;
}

View file

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