From ce88e7fcdf8498c33ad0c8139b05b11fb23c8ee2 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Sat, 18 Oct 2025 14:10:13 +0200 Subject: [PATCH] fix: update background style in ClientLayout to prevent image repetition and enhance visual presentation --- src/components/layout/ClientLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layout/ClientLayout.tsx b/src/components/layout/ClientLayout.tsx index 1ad779f..22319db 100644 --- a/src/components/layout/ClientLayout.tsx +++ b/src/components/layout/ClientLayout.tsx @@ -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, }; }