fix: update background style in ClientLayout to prevent image repetition and enhance visual presentation

This commit is contained in:
Julien Froidefond
2025-10-18 14:10:13 +02:00
parent a9f2f9f3c8
commit ce88e7fcdf

View File

@@ -42,7 +42,7 @@ export default function ClientLayout({ children, initialLibraries = [], initialF
backgroundImage: `url(${bg.imageUrl})`,
backgroundSize: "cover" as const,
backgroundPosition: "center" as const,
backgroundAttachment: "fixed" as const,
backgroundRepeat: "no-repeat" as const,
};
}