Skip to content

Commit

Permalink
Make background white
Browse files Browse the repository at this point in the history
  • Loading branch information
ericboucher committed Sep 9, 2024
1 parent b93f8df commit c477d64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/frontend/components/PrintWrapper/PrintWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const PrintWrapper = ({ printRef, children }: Props): JSX.Element => {
<Box
ref={printRef}
sx={{
background: 'none',
background: 'white',
}}
>
<Box
Expand All @@ -35,7 +35,7 @@ export const PrintWrapper = ({ printRef, children }: Props): JSX.Element => {
height: '100%',
width: '100%',
zIndex: -1,
backgroundColor: 'none',
backgroundColor: 'white',
},
}}
/>
Expand Down

0 comments on commit c477d64

Please sign in to comment.