fix: update background property to backgroundImage in ClientLayout for correct gradient rendering

This commit is contained in:
Julien Froidefond
2025-10-17 11:18:33 +02:00
parent 470391601d
commit a0ce7c9503

View File

@@ -34,7 +34,7 @@ export default function ClientLayout({ children, initialLibraries = [], initialF
if (bg.type === "gradient" && bg.gradient) {
return {
background: bg.gradient,
backgroundImage: bg.gradient,
backgroundAttachment: "fixed" as const,
};
}