mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
* feat(web): full screen view for duplicates * styling: make button visibility better --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
21 lines
721 B
Svelte
21 lines
721 B
Svelte
<script lang="ts">
|
|
import { mdiContentDuplicate } from '@mdi/js';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { AppRoute } from '$lib/constants';
|
|
import { t } from 'svelte-i18n';
|
|
</script>
|
|
|
|
<div class="border border-gray-300 dark:border-immich-dark-gray rounded-3xl pt-1 pb-6 dark:text-white">
|
|
<p class="text-xs font-medium p-4">{$t('organize_your_library').toUpperCase()}</p>
|
|
|
|
<a
|
|
href={AppRoute.DUPLICATES}
|
|
class="w-full hover:bg-gray-100 dark:hover:bg-immich-dark-gray flex items-center gap-4 p-4"
|
|
>
|
|
<span
|
|
><Icon path={mdiContentDuplicate} class="text-immich-primary dark:text-immich-dark-primary" size="24" />
|
|
</span>
|
|
{$t('review_duplicates')}
|
|
</a>
|
|
</div>
|