fix: show neon light (#27994)

This commit is contained in:
Alex
2026-04-20 19:12:54 -05:00
committed by GitHub
parent be1b9a5f67
commit 20c0cc7e73

View File

@@ -11,7 +11,7 @@
let { title, children, withHeader = true, withBackdrop = true }: Props = $props(); let { title, children, withHeader = true, withBackdrop = true }: Props = $props();
</script> </script>
<section class="min-w-dvw flex min-h-dvh items-center justify-center relative"> <section class="min-w-dvw flex min-h-dvh items-center justify-center relative isolate">
{#if withBackdrop} {#if withBackdrop}
<div class="absolute -z-10 w-full h-full flex place-items-center place-content-center"> <div class="absolute -z-10 w-full h-full flex place-items-center place-content-center">
<img <img
@@ -20,7 +20,7 @@
alt="Immich logo" alt="Immich logo"
/> />
<div <div
class="w-full h-[99%] absolute start-0 top-0 backdrop-blur-[200px] bg-transparent dark:bg-immich-dark-bg/20" class="w-full h-[99%] absolute inset-s-0 top-0 backdrop-blur-[200px] bg-transparent dark:bg-immich-dark-bg/20"
></div> ></div>
</div> </div>
{/if} {/if}