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
This commit is contained in:
Rishabh Kumar Jain 2021-03-23 12:59:37 -07:00
parent bb37ba1382
commit 0ba801140e

View File

@ -0,0 +1,8 @@
{% extends "!layout.html" %}
{% block footer %} {{ super() }}
<style>
.wy-nav-content { max-width: none; }
</style>
{% endblock %}