From f26d9000ddbf1b8684c6ca2b8d4d2eaa367d7903 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 22 Oct 2025 20:56:52 +0000 Subject: [PATCH] Fix docs site layout by removing excessive margin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set --sl-content-margin-inline to 0 to override Starlight's default margin that was causing the content container to display incorrectly at wider viewport widths. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docs/src/styles/custom.css | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/styles/custom.css b/docs/src/styles/custom.css index 8103305..b72cf9e 100644 --- a/docs/src/styles/custom.css +++ b/docs/src/styles/custom.css @@ -36,6 +36,7 @@ /* Content settings */ --sl-content-width: 50rem; --sl-sidebar-width: 20rem; + --sl-content-margin-inline: 0; /* Typography */ --sl-line-height: 1.7;