perf : replace bg image in preloader with CSS gradient
All checks were successful
Deploy Production / Deploy to Production (push) Successful in 20s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-05-25 18:17:31 +02:00
parent 7ba18dcd9d
commit a33e2467d8

View file

@ -28,7 +28,11 @@
position: fixed; position: fixed;
inset: 0; inset: 0;
z-index: 9999; z-index: 9999;
background: #000 url('/assets/img/scrollable-page-background.png') center / cover no-repeat; background:
radial-gradient(ellipse 70% 55% at 10% 90%, #82107a 0%, transparent 65%),
radial-gradient(ellipse 50% 45% at 8% 15%, #2e0d8e 0%, transparent 55%),
radial-gradient(ellipse 45% 40% at 48% 35%, #0c2540 0%, transparent 55%),
#060a1a;
transition: opacity 0.4s ease; transition: opacity 0.4s ease;
pointer-events: none; pointer-events: none;
} }