Skip to content

Commit

Permalink
Hiding collapsed section in print preview (#1339)
Browse files Browse the repository at this point in the history
  • Loading branch information
berhalak authored Dec 15, 2024
1 parent a4196a2 commit 044f6c7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/client/components/LayoutTray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1198,6 +1198,11 @@ const cssCollapsedTray = styled('div.collapsed_layout', `
outline: 2px dashed #7B8CEA;
background: rgba(123, 140, 234, 0.1);
}
@media print {
& {
display: none;
}
}
`
);

Expand Down

0 comments on commit 044f6c7

Please sign in to comment.