immich/web/src/lib/components/shared-components/immich-logo-small-link.svelte

9 lines
342 B
Svelte
Raw Normal View History

<script lang="ts">
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
import { mobileDevice } from '$lib/stores/mobile-device.svelte';
</script>
2025-04-28 09:53:53 -04:00
<a data-sveltekit-preload-data="hover" class="ms-4" href="/">
<ImmichLogo class="h-[50px] max-w-none md:w-auto md:max-w-full" noText={mobileDevice.maxMd} />
</a>