chore(icons): Put all the icons before the text

This commit is contained in:
Tom Hubrecht 2025-01-26 00:49:32 +01:00
parent 5937f2a0d0
commit 57fb348bdb
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc
3 changed files with 4 additions and 4 deletions

View file

@ -11,8 +11,8 @@
{% include "bulma/form.html" with form=form %}
<button class="button is-fullwidth mt-6">
<span>{% trans "Enregistrer" %}</span>
<span class="icon"><i class="ti ti-check"></i></span>
<span>{% trans "Enregistrer" %}</span>
</button>
</form>
{% endblock content %}

View file

@ -11,8 +11,8 @@
{% include "bulma/form.html" with form=form %}
<button class="button is-fullwidth mt-6">
<span>{% trans "Enregistrer" %}</span>
<span class="icon"><i class="ti ti-check"></i></span>
<span>{% trans "Enregistrer" %}</span>
</button>
</form>
{% endblock content %}

View file

@ -15,19 +15,19 @@
<a href="{% url 'account_logout' %}"
class="button is-light is-fullwidth">
<span>
<span>{% trans "Déconnexion" %}</span>
<span class="icon">
<i class="ti ti-door-exit"></i>
</span>
<span>{% trans "Déconnexion" %}</span>
</span>
</a>
{% else %}
<a href="{% url 'account_login' %}" class="button is-fullwidth is-light">
<span>
<span>{% trans "Connexion" %}</span>
<span class="icon">
<i class="ti ti-door-enter"></i>
</span>
<span>{% trans "Connexion" %}</span>
</span>
</a>
{% endif %}