We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62adcd0 commit 3154fedCopy full SHA for 3154fed
libs/@guardian/react-crossword/src/components/Cell.tsx
@@ -65,7 +65,9 @@ const CellComponent = ({
65
const cellStyles = css`
66
fill: ${backgroundColor};
67
@media print {
68
- fill: ${isBlackCell ? 'transparent' : theme.gridForegroundColor};
+ fill: ${isBlackCell
69
+ ? theme.gridPrintBackgroundColor
70
+ : theme.gridForegroundColor};
71
}
72
`;
73
0 commit comments