feat: introduce customizable background options with new gradient and solid color styles; integrate BackgroundProvider and BackgroundCard components for enhanced user experience in settings and layout
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m52s

This commit is contained in:
Julien Froidefond
2025-12-21 13:43:16 +01:00
parent 2452e30a0f
commit 6c14484636
7 changed files with 516 additions and 13 deletions

View File

@@ -15,7 +15,7 @@ export function PageLayout({ children }: PageLayoutProps) {
<SidebarContext.Provider
value={{ open: sidebarOpen, setOpen: setSidebarOpen }}
>
<div className="flex h-screen bg-background overflow-hidden page-background">
<div className="flex h-screen bg-background overflow-hidden page-background bg-default">
<Sidebar open={sidebarOpen} onOpenChange={setSidebarOpen} />
<main className="flex-1 overflow-auto overflow-x-hidden page-content">
<div className="p-3 md:p-8 lg:p-10 space-y-4 md:space-y-8 max-w-full">