fix background image

This commit is contained in:
Lea 2024-01-17 21:54:23 +01:00
parent a5fc79aa81
commit a32e31bb6c
Signed by: Lea
GPG key ID: 1BAFFE8347019C42

View file

@ -10,7 +10,7 @@ export default function BackgroundImage() {
<img
src={dark ? "/background-dark.jpg" : "/background-light.jpg"}
alt="background image"
className="select-none fixed left-0 right-0 top-0 bottom-0 -z-50 blur-md opacity-30 w-full"
className="select-none fixed left-0 right-0 top-0 bottom-0 -z-50 blur-md opacity-30 w-full min-h-full"
/>
);
}