style: profile and logout button

This commit is contained in:
Max Hohlfeld 2025-06-15 22:03:53 +02:00
parent cca925f4eb
commit 95f807b51d

View File

@ -70,7 +70,7 @@
<div class="navbar-item">
angemeldet als {{ user.name }}
<div class="buttons ml-3">
<a class="button is-success" hx-boost="true" href="/profile">
<a class="button is-success is-outlined" hx-boost="true" href="/profile">
<svg class="icon">
<use href="/static/feather-sprite.svg#user" />
</svg>
@ -81,8 +81,11 @@
<use href="/static/feather-sprite.svg#moon" />
</svg>
</button>
<a href="/logout" class="button is-light">
Abmelden
<a href="/logout" class="button is-danger is-outlined">
<svg class="icon">
<use href="/static/feather-sprite.svg#log-out" />
</svg>
<span>Abmelden</span>
</a>
</div>
</div>