From 0ba801140e23362eed55befa594469e5d0e8272d Mon Sep 17 00:00:00 2001 From: Rishabh Kumar Jain Date: Tue, 23 Mar 2021 12:59:37 -0700 Subject: [PATCH] Fix hard coded max width in Sphinx rtd theme * improves document reading experience on wider monitors * added _templates/layout.html to set max width to none Related-To: #496 Closes: #496 Change-Id: I1f2fc0a958cf9f6526ca314142fbcba34b5ef5c7 --- docs/source/_templates/layout.html | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 docs/source/_templates/layout.html diff --git a/docs/source/_templates/layout.html b/docs/source/_templates/layout.html new file mode 100644 index 000000000..cf2b2cd07 --- /dev/null +++ b/docs/source/_templates/layout.html @@ -0,0 +1,8 @@ +{% extends "!layout.html" %} + {% block footer %} {{ super() }} + + + +{% endblock %}