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:
parent
5c879acd5b
commit
f2be9f7ad1
2 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue