From 73793ad0f482c9180ad9aa6fefdf7238e12f2fe4 Mon Sep 17 00:00:00 2001 From: howlettt <1786243+howlettt@users.noreply.github.com> Date: Tue, 28 Apr 2026 12:18:59 -0600 Subject: [PATCH] docs: remove horizontal scrollbar in Chrome on homepage --- docs/.vitepress/theme/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/.vitepress/theme/custom.css b/docs/.vitepress/theme/custom.css index caebbeb1a..1fb7dcf24 100644 --- a/docs/.vitepress/theme/custom.css +++ b/docs/.vitepress/theme/custom.css @@ -33,6 +33,10 @@ border: 1px solid var(--vp-c-divider); } +html { + scrollbar-gutter: stable; +} + body { overflow-y: scroll; }