diff --git a/index.html b/index.html index 47055fe..a2daf1c 100644 --- a/index.html +++ b/index.html @@ -324,10 +324,13 @@ .nav-link.active { background-color: var(--accent-dim); color: var(--accent-green); - border-left: 2px solid var(--accent-green); padding-left: 0.5rem !important; } + .nav-link.active span { + background-color: var(--accent-green) !important; + } + /* TOC & Scroll */ .toc-link.active { color: var(--accent-green); @@ -464,6 +467,19 @@ } } + /* Hide scrollbar for breadcrumbs */ + #breadcrumbs { + -ms-overflow-style: none; + /* IE and Edge */ + scrollbar-width: none; + /* Firefox */ + } + + #breadcrumbs::-webkit-scrollbar { + display: none; + /* Chrome, Safari and Opera */ + } + /* Toast Notification */ #toast-container { position: fixed; @@ -700,8 +716,9 @@