From a1c296bc3cd84687624cd5b8096471ec7c12fc65 Mon Sep 17 00:00:00 2001 From: Dennis Antela Martinez Date: Thu, 16 Feb 2023 07:07:01 +0000 Subject: [PATCH] docs: increase width (#1049) This addresses #948. I set the documentation max width to 2560px, but can be adjusted - see screenshot below. Screenshot 2023-02-14 at 13 05 57 --- docs/_static/css/custom.css | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css index a3912f1e..673008a0 100644 --- a/docs/_static/css/custom.css +++ b/docs/_static/css/custom.css @@ -1,3 +1,13 @@ pre { - white-space: break-spaces; -} \ No newline at end of file + white-space: break-spaces; +} + +@media (min-width: 1200px) { + .container, + .container-lg, + .container-md, + .container-sm, + .container-xl { + max-width: 2560px !important; + } +}