From 6146d6ae757727dfb3723166eca00c297a66b1a8 Mon Sep 17 00:00:00 2001 From: Xi Yan Date: Tue, 29 Oct 2024 19:55:17 -0700 Subject: [PATCH] css --- docs/_static/custom.css | 3 +++ docs/source/conf.py | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 docs/_static/custom.css diff --git a/docs/_static/custom.css b/docs/_static/custom.css new file mode 100644 index 000000000..0b570a74a --- /dev/null +++ b/docs/_static/custom.css @@ -0,0 +1,3 @@ +.wy-nav-content { + max-width: 75% !important; +} diff --git a/docs/source/conf.py b/docs/source/conf.py index 62f151815..6a19f7fcd 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -79,3 +79,7 @@ html_theme_options = { html_static_path = ["../_static"] html_logo = "../_static/llama-stack-logo.png" + +html_css_files = [ + "custom.css", +]