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:
Bradley M. Kuhn 2021-10-23 12:16:14 -07:00
parent 91d661f715
commit 7229e78e0f

View file

@ -151,6 +151,12 @@ text-decoration: none; color: #557733;
}
}
@media screen and (max-width: 52em) {
#sidebar {
display: none;
}
}
p.footnote {
font-size: 85%;
}