We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e99b7c + c4f9642 commit edfbdaaCopy full SHA for edfbdaa
libs/@guardian/react-crossword/src/components/Cell.tsx
@@ -65,7 +65,10 @@ 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
+ stroke: ${theme.gridPrintBackgroundColor};
72
}
73
`;
74
0 commit comments