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

@@ -79,6 +79,10 @@ const Content = styled.p<{ $isSelected: boolean }>`
color: ${s("placeholder")};
content: attr(data-caption);
pointer-events: none;
@media print {
display: none;
}
}
`;