From 0f21ff83a36cc0a7b1afa28297632bd66c09bde2 Mon Sep 17 00:00:00 2001 From: Faulty Date: Thu, 22 Aug 2024 03:18:36 -0500 Subject: [PATCH] CSS hack to fix scroll to anchor as per https://github.com/jhildenbiddle/docsify-tabs/pull/61 --- docs/index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/index.html b/docs/index.html index 13703573e..fd3c395bd 100644 --- a/docs/index.html +++ b/docs/index.html @@ -384,6 +384,16 @@ opacity: 0.5; } } + + /* css hack to fix scroll to anchor in docsify tabs */ + .docsify-tabs:not(:has(> button.docsify-tabs__tab--active))>.docsify-tabs__content[class]:nth-child(2) { + visibility: visible; + position: relative; + overflow: auto; + height: auto; + + padding: var(--docsifytabs-content-padding); + }