From c0f4424cb90e2abe5f6182b504c114b55a8ea4a1 Mon Sep 17 00:00:00 2001 From: rooot Date: Thu, 27 Nov 2025 13:53:12 +0100 Subject: [PATCH] fix(docs): blurry small logo, scroll resizing top bar Signed-off-by: rooot --- theme/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/theme/index.css b/theme/index.css index 2e4e290b..94501b05 100644 --- a/theme/index.css +++ b/theme/index.css @@ -96,3 +96,12 @@ img { max-height: 35vh; max-width: none; /* Having this set causes slight aspect ratio breakage */ } + +/* fix navigation bar resizing when scrolling */ +body:not(.notTopArrived) header.rp-nav { + border-bottom: 1px solid transparent !important; +} +/* fix the small logo on the top left looking blurry */ +.rspress-logo { + height: 32px; +}