0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-11 02:23:09 -05:00

fix(web): person favorite icon bad placement (#16412)

move favorite person icon to top left

fixes #16003

Co-authored-by: Calum Dingwall <caburum@users.noreply.github.com>
This commit is contained in:
Calum Dingwall 2025-02-27 23:15:37 -05:00 committed by GitHub
parent 5c879acd5b
commit f2be9f7ad1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@
widthStyle="100%"
/>
{#if person.isFavorite}
<div class="absolute bottom-2 left-2 z-10">
<div class="absolute top-2 left-2">
<Icon path={mdiHeart} size="24" class="text-white" />
</div>
{/if}

View file

@ -64,7 +64,7 @@
widthStyle="100%"
/>
{#if person.isFavorite}
<div class="absolute bottom-2 left-2 z-10">
<div class="absolute top-2 left-2">
<Icon path={mdiHeart} size="24" class="text-white" />
</div>
{/if}