fix(web): update password-protected share logo size (#9567)

This commit is contained in:
Snowknight26 2024-05-27 21:10:53 -05:00 committed by GitHub
parent bce916e4c8
commit 832084687d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 21 additions and 15 deletions

View file

@ -0,0 +1,9 @@
<script lang="ts">
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
export let width: number;
</script>
<a data-sveltekit-preload-data="hover" class="ml-4" href="/">
<ImmichLogo class="h-[24px] w-[24px] max-w-none md:w-auto md:h-10 md:max-w-full" noText={width < 768} />
</a>