mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-06-03 01:32:31 +00:00

The default theme has a css rule that limits the body element width to 800px, which results in sizeable chunk of empty space to the right of the docs. Add a small css override to remove this limit (like the Python docs do). Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
5 lines
69 B
CSS
5 lines
69 B
CSS
/* remove max-width restriction */
|
|
div.body {
|
|
max-width: none;
|
|
}
|