diff --git a/docs/source/_static/css/huggingface.css b/docs/source/_static/css/huggingface.css index dc6af0a5..d393014a 100644 --- a/docs/source/_static/css/huggingface.css +++ b/docs/source/_static/css/huggingface.css @@ -2,6 +2,10 @@ /* Version control */ +.selectors { + margin-bottom: 10px; +} + .dropdown-button { display: inline-block; width: 50%; diff --git a/docs/source/_static/js/custom.js b/docs/source/_static/js/custom.js index b7152bd4..c4159a80 100644 --- a/docs/source/_static/js/custom.js +++ b/docs/source/_static/js/custom.js @@ -49,7 +49,7 @@ function addCustomFooter() { const questionOrIssue = document.createElement("div"); questionOrIssue.innerHTML = "Stuck? Read our Blog posts" + - "or Create an issue"; + " or Create an issue"; customFooter.appendChild(questionOrIssue); customFooter.classList.add("footer"); @@ -199,6 +199,7 @@ function addVersionControl() { // Container const div = document.createElement("div"); + div.classList.add("selectors"); div.appendChild(buttonContainer); div.appendChild(languageMenu); div.appendChild(versionMenu); diff --git a/docs/source/conf.py b/docs/source/conf.py index c47e1ab1..40a92884 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -30,9 +30,7 @@ release = "0.9.0" # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = [ - "sphinx_tabs.tabs", -] +extensions = [] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"]