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 Kuhn 2021-10-23 12:16:14 -07:00
parent 4dfe8262e0
commit e05f4bd5b4

View file

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