mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2025-04-07 22:35:44 +00:00
21 lines
237 B
SCSS
21 lines
237 B
SCSS
// Printing styles
|
|
@media print {
|
|
.book-menu,
|
|
.book-footer {
|
|
display: none;
|
|
}
|
|
|
|
main {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.book-toc {
|
|
flex: none;
|
|
|
|
nav {
|
|
position: relative;
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|