1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-01 15:11:21 +01:00

chore(web): album thumbnail size ()

This commit is contained in:
Alex 2023-11-20 13:22:35 -06:00 committed by GitHub
parent 725f30c494
commit 1fbbb5a236
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
web/src/routes/(user)

View file

@ -287,7 +287,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(15rem,1fr))]"> <div class="grid grid-cols-[repeat(auto-fill,minmax(13rem,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

View file

@ -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(15rem,1fr))]"> <div class="grid grid-cols-[repeat(auto-fill,minmax(13rem,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} />

View file

@ -93,7 +93,7 @@
<div> <div>
<!-- Share Album List --> <!-- Share Album List -->
<div class="grid grid-cols-[repeat(auto-fill,minmax(15rem,1fr))]"> <div class="grid grid-cols-[repeat(auto-fill,minmax(13rem,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} />