mirror of
https://github.com/rust-lang/mdBook
synced 2024-12-14 23:02:34 +00:00
Fix styling regression on print media in chromium
Forces 0px left padding on print view even if sidebar is visible
This commit is contained in:
parent
2ae6e6a6e3
commit
911683d2cf
2 changed files with 7 additions and 0 deletions
|
@ -931,6 +931,9 @@ table thead td {
|
|||
left: 0;
|
||||
overflow-y: initial;
|
||||
}
|
||||
#page-wrapper.page-wrapper {
|
||||
padding-left: 0px;
|
||||
}
|
||||
#content {
|
||||
max-width: none;
|
||||
margin: 0;
|
||||
|
|
|
@ -12,6 +12,10 @@
|
|||
overflow-y: initial;
|
||||
}
|
||||
|
||||
#page-wrapper.page-wrapper {
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
#content {
|
||||
max-width: none;
|
||||
margin: 0;
|
||||
|
|
Loading…
Reference in a new issue