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
91d661f715
commit
7229e78e0f
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…
Reference in a new issue