fix(web): neon artifacts (#15582)

This commit is contained in:
Alex 2025-01-24 09:18:26 -06:00 committed by GitHub
parent 8a481e2ea1
commit 19740a3560
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
/* dark */ /* dark */
--immich-dark-primary: 172 203 250; --immich-dark-primary: 172 203 250;
--immich-dark-bg: 0 0 0; --immich-dark-bg: 10 10 10;
--immich-dark-fg: 229 231 235; --immich-dark-fg: 229 231 235;
--immich-dark-gray: 33 33 33; --immich-dark-gray: 33 33 33;
--immich-dark-error: 211 47 47; --immich-dark-error: 211 47 47;

View File

@ -1,7 +1,7 @@
<script lang="ts"> <script lang="ts">
import { Card, CardBody, CardHeader, Heading, Logo, VStack } from '@immich/ui'; import { Card, CardBody, CardHeader, Heading, Logo, VStack } from '@immich/ui';
import type { Snippet } from 'svelte'; import type { Snippet } from 'svelte';
import { immichLogo } from '@immich/ui';
interface Props { interface Props {
title: string; title: string;
children?: Snippet; children?: Snippet;
@ -12,8 +12,8 @@
<section class="min-w-screen flex min-h-dvh items-center justify-center relative"> <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"> <div class="absolute -z-10 w-[99%] h-[99%] flex place-items-center place-content-center">
<img src="/immich-logo-no-bg.svg" class="w-[750px] mb-2 antialiased -z-10" alt="Immich logo" /> <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-immich-bg/80 dark:bg-immich-dark-bg/20"></div> <div class="w-full h-[99%] absolute left-0 top-0 backdrop-blur-3xl bg-transparent dark:bg-immich-dark-bg/20"></div>
</div> </div>
<Card color="secondary" class="w-full max-w-lg border m-2"> <Card color="secondary" class="w-full max-w-lg border m-2">