Skip to content

Commit edfbdaa

Browse files
authored
Merge branch 'main' into react-crossword-v3
2 parents 2e99b7c + c4f9642 commit edfbdaa

File tree

1 file changed

+4
-1
lines changed
  • libs/@guardian/react-crossword/src/components

1 file changed

+4
-1
lines changed

libs/@guardian/react-crossword/src/components/Cell.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ const CellComponent = ({
6565
const cellStyles = css`
6666
fill: ${backgroundColor};
6767
@media print {
68-
fill: ${isBlackCell ? 'transparent' : theme.gridForegroundColor};
68+
fill: ${isBlackCell
69+
? theme.gridPrintBackgroundColor
70+
: theme.gridForegroundColor};
71+
stroke: ${theme.gridPrintBackgroundColor};
6972
}
7073
`;
7174

0 commit comments

Comments
 (0)