Added ability to print a document

This commit is contained in:
Jori Lallo
2017-12-02 16:27:45 -08:00
parent 0af46a0d46
commit 224f94a79e
6 changed files with 22 additions and 0 deletions

View File

@@ -238,6 +238,10 @@ const Header = styled(Flex)`
flex-shrink: 0;
align-items: flex-end;
${({ readOnly }) => !readOnly && 'cursor: text;'};
@media print {
display: none;
}
`;
const StyledEditor = styled(Editor)`