mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05:00
chore(web): adjust album thumbnail size (#5277)
This commit is contained in:
parent
030cd8c4c4
commit
df9ec9327d
3 changed files with 3 additions and 3 deletions
|
@ -251,7 +251,7 @@
|
||||||
{#if $albums.length !== 0}
|
{#if $albums.length !== 0}
|
||||||
<!-- Album Card -->
|
<!-- Album Card -->
|
||||||
{#if $albumViewSettings.view === AlbumViewMode.Cover}
|
{#if $albumViewSettings.view === AlbumViewMode.Cover}
|
||||||
<div class="grid grid-cols-[repeat(auto-fill,minmax(13rem,1fr))]">
|
<div class="grid grid-cols-[repeat(auto-fill,minmax(14rem,1fr))]">
|
||||||
{#each $albums as album (album.id)}
|
{#each $albums as album (album.id)}
|
||||||
<a data-sveltekit-preload-data="hover" href={`albums/${album.id}`} animate:flip={{ duration: 200 }}>
|
<a data-sveltekit-preload-data="hover" href={`albums/${album.id}`} animate:flip={{ duration: 200 }}>
|
||||||
<AlbumCard
|
<AlbumCard
|
||||||
|
|
|
@ -133,7 +133,7 @@
|
||||||
{#if albums.length}
|
{#if albums.length}
|
||||||
<section>
|
<section>
|
||||||
<div class="ml-6 text-4xl font-medium text-black/70 dark:text-white/80">ALBUMS</div>
|
<div class="ml-6 text-4xl font-medium text-black/70 dark:text-white/80">ALBUMS</div>
|
||||||
<div class="grid grid-cols-[repeat(auto-fill,minmax(13rem,1fr))]">
|
<div class="grid grid-cols-[repeat(auto-fill,minmax(14rem,1fr))]">
|
||||||
{#each albums as album (album.id)}
|
{#each albums as album (album.id)}
|
||||||
<a data-sveltekit-preload-data="hover" href={`albums/${album.id}`} animate:flip={{ duration: 200 }}>
|
<a data-sveltekit-preload-data="hover" href={`albums/${album.id}`} animate:flip={{ duration: 200 }}>
|
||||||
<AlbumCard {album} user={data.user} isSharingView={false} showItemCount={false} showContextMenu={false} />
|
<AlbumCard {album} user={data.user} isSharingView={false} showItemCount={false} showContextMenu={false} />
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<!-- Share Album List -->
|
<!-- Share Album List -->
|
||||||
<div class="grid grid-cols-[repeat(auto-fill,minmax(13rem,1fr))]">
|
<div class="grid grid-cols-[repeat(auto-fill,minmax(14rem,1fr))]">
|
||||||
{#each data.sharedAlbums as album (album.id)}
|
{#each data.sharedAlbums as album (album.id)}
|
||||||
<a data-sveltekit-preload-data="hover" href={`albums/${album.id}`} animate:flip={{ duration: 200 }}>
|
<a data-sveltekit-preload-data="hover" href={`albums/${album.id}`} animate:flip={{ duration: 200 }}>
|
||||||
<AlbumCard {album} user={data.user} isSharingView showContextMenu={false} />
|
<AlbumCard {album} user={data.user} isSharingView showContextMenu={false} />
|
||||||
|
|
Loading…
Reference in a new issue