mirror of
https://github.com/immich-app/immich.git
synced 2025-02-11 01:18:24 -05:00
feat(web) Make "no albums" card clickable (#888)
* Make "no albums" card clickable * Add cursor-pointer to clickable "no albums" card
This commit is contained in:
parent
811494e9ed
commit
6172d80776
1 changed files with 2 additions and 1 deletions
|
@ -93,7 +93,8 @@
|
||||||
<!-- Empty Message -->
|
<!-- Empty Message -->
|
||||||
{#if $albums.length === 0}
|
{#if $albums.length === 0}
|
||||||
<div
|
<div
|
||||||
class="border dark:border-immich-dark-gray p-5 w-[50%] m-auto mt-10 bg-gray-50 dark:bg-immich-dark-gray rounded-3xl flex flex-col place-content-center place-items-center"
|
on:click={handleCreateAlbum}
|
||||||
|
class="border dark:border-immich-dark-gray hover:bg-immich-primary/5 dark:hover:bg-immich-dark-primary/25 hover:cursor-pointer p-5 w-[50%] m-auto mt-10 bg-gray-50 dark:bg-immich-dark-gray rounded-3xl flex flex-col place-content-center place-items-center"
|
||||||
>
|
>
|
||||||
<img src="/empty-1.svg" alt="Empty shared album" width="500" />
|
<img src="/empty-1.svg" alt="Empty shared album" width="500" />
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue