From c5c7069f74e9efd26e7183e2eac427b1b974767f Mon Sep 17 00:00:00 2001 From: rakadu1 Date: Fri, 13 Mar 2026 10:46:20 +0530 Subject: [PATCH] style(overview): resize visual map and hide scrollbars - Expanded Visual Navigation Map to utilize full width and increased height by 30%. - Removed visible scrollbar from the Project Files panel. - Adjusted padding in the file tree view for better alignment. --- steps/annex/code-base-overview.html | 26 ++++++++++++++++++-------- steps/index.html | 2 +- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/steps/annex/code-base-overview.html b/steps/annex/code-base-overview.html index 93b5574..5558b0a 100644 --- a/steps/annex/code-base-overview.html +++ b/steps/annex/code-base-overview.html @@ -690,6 +690,16 @@ .dark .file-tree ul li::before { background-color: #475569; } + + /* Hide scrollbar for Chrome, Safari and Opera */ + .no-scrollbar::-webkit-scrollbar { + display: none; + } + /* Hide scrollbar for IE, Edge and Firefox */ + .no-scrollbar { + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ + }