From 0f78fb7c1b4421c4687ef4fac174e6f498681e4f Mon Sep 17 00:00:00 2001 From: Gyan Ranjan Panda Date: Fri, 6 Feb 2026 03:48:20 +0530 Subject: [PATCH] fix: improve UI padding and text alignment between navbar and content - Increased top margin in .wy-nav-content from 0px to 20px for better spacing from navbar - Increased top padding in div.rst-content from 10px to 30px for improved text visibility - Added line-height: 1.6 for better text readability on desktop - Improved mobile responsive padding from 0px to 20px with line-height: 1.5 - Ensures content is not cramped against navigation elements Fixes #235 Signed-off-by: Gyan Ranjan Panda --- docs/source/_static/theme_overrides.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/source/_static/theme_overrides.css b/docs/source/_static/theme_overrides.css index 2ed7191..5f25342 100644 --- a/docs/source/_static/theme_overrides.css +++ b/docs/source/_static/theme_overrides.css @@ -2,7 +2,7 @@ .wy-nav-content { max-width: 100%; padding: 0px 40px 0px 0px; - margin-top: 0px; + margin-top: 20px; } .wy-nav-content-wrap { @@ -12,16 +12,18 @@ div.rst-content { max-width: 1300px; border: 0; - padding: 10px 80px 10px 80px; + padding: 30px 80px 10px 80px; margin-left: 50px; + line-height: 1.6; } @media (max-width: 768px) { div.rst-content { max-width: 1300px; border: 0; - padding: 0px 10px 10px 10px; + padding: 20px 10px 10px 10px; margin-left: 0px; + line-height: 1.5; } }