/*
 * mkdocs material hides the navigation side bar
 * on displays with width less than 76.25em.
 * Here we define a css class that can be used
 * on section index pages to show the section toc.
 *
 * https://github.com/squidfunk/mkdocs-material/blob/c68fac7fb3071fa4f45cc823e2ca2ea82fd67b43/src/overrides/home.html#L54-L59
 */
@media only screen and (min-width: 76.25em) {
  .small-width-screen-only {
    display: none;
  }
}
