feat(profile): CircleUser-Icon statt 👤 im Profil-Chip
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 1m18s
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 1m18s
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user