Blue logout button

This commit is contained in:
2025-03-08 15:16:17 +01:00
parent 9fdbaf7b23
commit 5a63584a17
2 changed files with 1 additions and 4 deletions

View File

@@ -11,7 +11,7 @@
<form action="{% url 'accounts:logout' %}" method="post"> <form action="{% url 'accounts:logout' %}" method="post">
{% csrf_token %} {% csrf_token %}
<button class="bg-red-600 text-white p-3 rounded-full font-black" type="submit">Abmelden</button> <button class="bg-blue-600 text-white p-3 rounded-full font-black" type="submit">Abmelden</button>
</form> </form>
</div> </div>
<div class="flex justify-end"> <div class="flex justify-end">

View File

@@ -442,9 +442,6 @@
.bg-red-500 { .bg-red-500 {
background-color: var(--color-red-500); background-color: var(--color-red-500);
} }
.bg-red-600 {
background-color: var(--color-red-600);
}
.bg-white { .bg-white {
background-color: var(--color-white); background-color: var(--color-white);
} }