From d6b38d31f154f74614af9970a31b34a38140a5ed Mon Sep 17 00:00:00 2001 From: Arnie Date: Wed, 30 Oct 2024 09:29:40 +0100 Subject: [PATCH] Fix print background --- app/frontend/src/components/Layout/MainLayout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/frontend/src/components/Layout/MainLayout.tsx b/app/frontend/src/components/Layout/MainLayout.tsx index 73df744..388d291 100644 --- a/app/frontend/src/components/Layout/MainLayout.tsx +++ b/app/frontend/src/components/Layout/MainLayout.tsx @@ -6,6 +6,10 @@ import { hideNavigationMQ } from "./navigationBreakpoint"; const Root = styled("div")({ background: "rgb(215, 215, 215)", + "@media print": { + // Nav background + background: "rgb(41, 62, 73)", + }, }); const Container = styled("div")({