fix(book): hide sidebar menu when printing (#1820)

This commit is contained in:
Bangyou Zheng 2020-08-25 01:01:40 +10:00 committed by GitHub
commit bb19e13adb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,6 +92,14 @@
}
}
/* Hide sidebar in printouts. */
@media print {
.docs-sidebar {
display: none;
}
}
/* Docs sidebar li>a. */
.docs-sidebar .nav>li>a {