ansys / ansys-sphinx-theme

PyData-based Sphinx theme from the PyAnsys community
https://sphinxdocs.ansys.com
MIT License
21 stars 5 forks source link

Doc template not using the entire screen #325

Open svandenb-dev opened 7 months ago

svandenb-dev commented 7 months ago

Description of the modifications

The template does not scale with the screen resolution. This is impacting the rendering. I got complains already from users. Could we improve the space usage on screen ?

repo : https://github.com/ansys-internal/pyansys-edb

image

image

Useful links and references

No response

ansbmartin commented 6 months ago

I use the following CSS for this:

.bd-main .bd-content .bd-article-container {
   max-width: unset;
}
.bd-page-width {
   max-width: unset;
}
table {
   width: 100%;
}
.bd-sidebar-primary {
   width: 15%;
}