Merge pull request #462 from outline/jori/print

Added ability to print a document
This commit is contained in:
Jori Lallo
2017-12-02 23:36:21 -08:00
committed by GitHub
9 changed files with 34 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)`