fix: Hide drag handles, empty captions, and selected outlines when printing (#6550)

This commit is contained in:
Tom Moor
2024-02-16 09:33:50 -08:00
committed by GitHub
parent 83416530c1
commit 561606f6f4
3 changed files with 12 additions and 0 deletions

View File

@@ -26,6 +26,10 @@ export const ResizeLeft = styled.div<{ $dragging: boolean }>`
box-shadow: 0 0 0 1px ${s("textSecondary")};
opacity: 0.75;
}
@media print {
display: none;
}
`;
export const ResizeRight = styled(ResizeLeft)`