hugo-book-theme/assets/_print.scss
Shane Liesegang bce8940c62 Removing flex from <main> for sake of print layout (#129)
* Removing flex from <main> for sake of print layout
* trimming excess whitespace
2020-01-17 20:32:36 +01:00

19 lines
202 B
SCSS

@media print {
.book-menu,
.book-footer {
display: none;
}
main {
display: block;
}
.book-toc {
flex: none;
nav {
position: relative;
width: auto;
}
}
}