mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05:00
fix: login page (#15613)
This commit is contained in:
parent
96d2e9b4c5
commit
aaea5cf1ad
1 changed files with 6 additions and 5 deletions
|
@ -1,7 +1,6 @@
|
|||
<script lang="ts">
|
||||
import { Card, CardBody, CardHeader, Heading, Logo, VStack } from '@immich/ui';
|
||||
import { Card, CardBody, CardHeader, Heading, immichLogo, Logo, VStack } from '@immich/ui';
|
||||
import type { Snippet } from 'svelte';
|
||||
import { immichLogo } from '@immich/ui';
|
||||
interface Props {
|
||||
title: string;
|
||||
children?: Snippet;
|
||||
|
@ -11,9 +10,11 @@
|
|||
</script>
|
||||
|
||||
<section class="min-w-screen flex min-h-dvh items-center justify-center relative">
|
||||
<div class="absolute -z-10 w-[99%] h-[99%] flex place-items-center place-content-center">
|
||||
<img src={immichLogo} class="w-[700px] mb-2 antialiased -z-10" alt="Immich logo" />
|
||||
<div class="w-full h-[99%] absolute left-0 top-0 backdrop-blur-3xl bg-transparent dark:bg-immich-dark-bg/20"></div>
|
||||
<div class="absolute -z-10 w-full h-full flex place-items-center place-content-center">
|
||||
<img src={immichLogo} class="max-w-screen-md mx-auto h-full mb-2 antialiased -z-10" alt="Immich logo" />
|
||||
<div
|
||||
class="w-full h-[99%] absolute left-0 top-0 backdrop-blur-[200px] bg-transparent dark:bg-immich-dark-bg/20"
|
||||
></div>
|
||||
</div>
|
||||
|
||||
<Card color="secondary" class="w-full max-w-lg border m-2">
|
||||
|
|
Loading…
Add table
Reference in a new issue