mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 09:13:17 +03:00
feat(web): immich-ui components (#14263)
* feat: add immich-ui to auth pages * fix: welcome icon * styling * fix: mobile padding --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
@@ -19,12 +19,22 @@
|
||||
import { isAssetViewerRoute, isSharedLinkRoute } from '$lib/utils/navigation';
|
||||
import { onDestroy, onMount, type Snippet } from 'svelte';
|
||||
import { run } from 'svelte/legacy';
|
||||
import { setTranslations } from '@immich/ui';
|
||||
import '../app.css';
|
||||
import { t } from 'svelte-i18n';
|
||||
|
||||
interface Props {
|
||||
children?: Snippet;
|
||||
}
|
||||
|
||||
$effect(() => {
|
||||
setTranslations({
|
||||
close: $t('close'),
|
||||
showPassword: $t('show_password'),
|
||||
hidePassword: $t('hide_password'),
|
||||
});
|
||||
});
|
||||
|
||||
let { children }: Props = $props();
|
||||
|
||||
let showNavigationLoadingBar = $state(false);
|
||||
|
||||
Reference in New Issue
Block a user