From 602c434280a01b62972364989a16d6315888e353 Mon Sep 17 00:00:00 2001 From: Angelos Angelopoulos Date: Thu, 24 Oct 2024 11:35:57 -0400 Subject: [PATCH] Fix docs website display on mobile devices, resolve docs build warnings --- docs/_static/custom.css | 8 +++++++- docs/conf.py | 1 - 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/_static/custom.css b/docs/_static/custom.css index e3d63a5..61637d0 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -1,3 +1,9 @@ .bd-page-width { max-width: 100rem; /* default is 88rem */ -} \ No newline at end of file +} + +@media screen and (max-width: 541px) { + .title.logo__title { + display: none; + } +} diff --git a/docs/conf.py b/docs/conf.py index 920e1b8..b263fb2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,6 @@ release = "0.4.0" extensions = [ - "sphinx.ext.autosectionlabel", "sphinx.ext.autodoc", "sphinx.ext.napoleon", "sphinx_design",