feat(profile): CircleUser-Icon statt 👤 im Profil-Chip
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 1m18s

This commit is contained in:
hsiegeln
2026-04-17 19:08:35 +02:00
parent 8db67bd1a5
commit 224352d051

View File

@@ -1,4 +1,5 @@
<script lang="ts">
import { CircleUser } from 'lucide-svelte';
import { profileStore } from '$lib/client/profile.svelte';
import { alertAction } from '$lib/client/confirm.svelte';
@@ -27,7 +28,7 @@
<span class="emoji">{profileStore.active.avatar_emoji ?? '🙂'}</span>
<span class="name">{profileStore.active.name}</span>
{:else}
<span class="emoji">👤</span>
<span class="icon"><CircleUser size={20} strokeWidth={1.75} /></span>
<span class="name">Profil wählen</span>
{/if}
</button>
@@ -107,6 +108,11 @@
.emoji {
font-size: 1.1rem;
}
.icon {
display: inline-flex;
align-items: center;
color: #2b6a3d;
}
.backdrop {
position: fixed;
inset: 0;