print style

This commit is contained in:
korelstar 2019-06-16 16:40:20 +02:00 committed by GitHub
parent b0a20d7851
commit c01726f4ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -1 +1,2 @@
@import 'app-navigation.scss';
@import 'print.scss';

22
css/print.scss Normal file
View File

@ -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;
}
}