mirror of
https://github.com/immich-app/immich.git
synced 2025-01-26 17:21:29 +02:00
fix(web): multiple small issues on the web app (#5875)
This commit is contained in:
parent
cabc2d57dd
commit
64176d2ff4
@ -151,7 +151,7 @@
|
|||||||
isOpacity={true}
|
isOpacity={true}
|
||||||
icon={asset.isFavorite ? mdiHeart : mdiHeartOutline}
|
icon={asset.isFavorite ? mdiHeart : mdiHeartOutline}
|
||||||
on:click={() => dispatch('favorite')}
|
on:click={() => dispatch('favorite')}
|
||||||
title="Favorite"
|
title={asset.isFavorite ? 'Unfavorite' : 'Favorite'}
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
@ -674,7 +674,7 @@
|
|||||||
id="stack-slideshow"
|
id="stack-slideshow"
|
||||||
class="z-[1005] flex place-item-center place-content-center absolute bottom-0 w-full col-span-4 col-start-1 mb-1 overflow-x-auto horizontal-scrollbar"
|
class="z-[1005] flex place-item-center place-content-center absolute bottom-0 w-full col-span-4 col-start-1 mb-1 overflow-x-auto horizontal-scrollbar"
|
||||||
>
|
>
|
||||||
<div class="relative whitespace-nowrap transition-all">
|
<div class="relative w-full whitespace-nowrap transition-all">
|
||||||
{#each $stackAssetsStore as stackedAsset (stackedAsset.id)}
|
{#each $stackAssetsStore as stackedAsset (stackedAsset.id)}
|
||||||
<div
|
<div
|
||||||
class="{stackedAsset.id == asset.id
|
class="{stackedAsset.id == asset.id
|
||||||
|
Loading…
x
Reference in New Issue
Block a user