Skip to content

Commit

Permalink
show hidden nodes on print
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaLysiuk committed Dec 20, 2023
1 parent 2c5ca67 commit 67d29df
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ const Content = styled.div<ContentProps>`
font-family: ${({ theme }) => theme.fontFamilySans};
font-size: 14px;
max-width: 66vw;
visibility: hidden;
visibility: ${({ printPreviewActive }) =>
printPreviewActive ? "visible" : "hidden"};
cursor: pointer;
border-width: 2px;
border-style: ${({ isLibrary }) => (isLibrary ? "dashed" : "solid")};
Expand Down

0 comments on commit 67d29df

Please sign in to comment.