mirror of
https://github.com/recp/cglm.git
synced 2025-10-03 16:51:35 +00:00
RTD theme's default is 800px as max width for the content, but we have tables with tons of columns, which need the full width of the view-port. Comment from yocto project theme_overrides.css Signed-off-by: Vincent Davis Jr <vince@underview.tech>
13 lines
300 B
CSS
13 lines
300 B
CSS
@media screen {
|
|
/* content column
|
|
*
|
|
* RTD theme's default is 800px as max width for the content, but we have
|
|
* tables with tons of columns, which need the full width of the view-port.
|
|
*
|
|
* Comment from yocto project theme_overrides.css
|
|
*/
|
|
|
|
.wy-nav-content{ max-width: none; }
|
|
|
|
}
|