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

@@ -106,6 +106,11 @@ const Container = styled(Flex)`
width: ${layout.sidebarWidth};
background: ${color.smoke};
transition: left 200ms ease-in-out;
@media print {
display: none;
left: 0;
}
`;
const Section = styled(Flex)`