Sidebar should disappear on small screens.
We've had a report that the sidebars are very distracting, particularly for the blogs, on smaller screens. This change to the CSS will cause sidebars to disappear on smaller screens.
This commit is contained in:
parent
4dfe8262e0
commit
e05f4bd5b4
1 changed files with 6 additions and 0 deletions
|
|
@ -151,6 +151,12 @@ text-decoration: none; color: #557733;
|
|||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 52em) {
|
||||
#sidebar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
p.footnote {
|
||||
font-size: 85%;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue