mirror of
https://github.com/immich-app/immich.git
synced 2025-01-25 17:15:28 +02:00
fix(web) long album name break styling for shared album card (#1473)
This commit is contained in:
parent
1a640609c7
commit
dfbc831525
@ -26,7 +26,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="flex min-w-[550px] border-b border-gray-300 dark:border-immich-dark-gray place-items-center py-4 gap-6 transition-all hover:border-immich-primary dark:hover:border-immich-dark-primary"
|
class="grid grid-cols-[75px_1fr] w-[550px] border-b border-gray-300 dark:border-immich-dark-gray place-items-center py-4 gap-6 transition-all hover:border-immich-primary dark:hover:border-immich-dark-primary"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
{#await loadImageData(album.albumThumbnailAssetId)}
|
{#await loadImageData(album.albumThumbnailAssetId)}
|
||||||
@ -46,8 +46,10 @@
|
|||||||
{/await}
|
{/await}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div class="justify-self-start">
|
||||||
<p class="font-medium text-gray-800 dark:text-immich-dark-primary">{album.albumName}</p>
|
<p class="font-medium text-gray-800 dark:text-immich-dark-primary">
|
||||||
|
{album.albumName}
|
||||||
|
</p>
|
||||||
|
|
||||||
{#await getAlbumOwnerInfo() then albumOwner}
|
{#await getAlbumOwnerInfo() then albumOwner}
|
||||||
{#if user.email == albumOwner.email}
|
{#if user.email == albumOwner.email}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user