Fix print background

This commit is contained in:
Arnie 2024-10-30 09:29:40 +01:00
parent 4d5945ff50
commit d6b38d31f1

View File

@ -6,6 +6,10 @@ import { hideNavigationMQ } from "./navigationBreakpoint";
const Root = styled("div")({ const Root = styled("div")({
background: "rgb(215, 215, 215)", background: "rgb(215, 215, 215)",
"@media print": {
// Nav background
background: "rgb(41, 62, 73)",
},
}); });
const Container = styled("div")({ const Container = styled("div")({