diff --git a/css/notes.scss b/css/notes.scss index 33fe7e53..e3df8cb3 100644 --- a/css/notes.scss +++ b/css/notes.scss @@ -1 +1,2 @@ @import 'app-navigation.scss'; +@import 'print.scss'; diff --git a/css/print.scss b/css/print.scss new file mode 100644 index 00000000..3bd9b279 --- /dev/null +++ b/css/print.scss @@ -0,0 +1,22 @@ +@media print { + #header, + #app-navigation, + #note-container .action-buttons { + display: none !important; + } + + #content { + display: block; + padding: 0; + } + + #note-container .note-editor, + #note-container .note-preview { + padding: 0 !important; + font-size: 10pt !important; + } + + #app-content { + margin-left: 0 !important; + } +}