Skip to content

Commit 66f163b

Browse files
Merge branch 'next' into version-warning
2 parents 636f60c + 0689edb commit 66f163b

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

www/src/components/navigation/leftSidebar.astro

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ const sidebar = SIDEBAR[langCode];
2222
<div class="w-full ml--40 md:ml-0 mb-6 mx-auto px-6 md:px-8 md:hidden">
2323
<Search isLanding={isLanding} client:idle />
2424
</div>
25-
<div
26-
class="t3-scrollbar w-full h-full bg-default transition-colors duration-300"
27-
>
25+
<div class="w-full h-full bg-default transition-colors duration-300">
2826
<ul class="pb-28 pr-4 pl-4 md:pb-0 dark:text-t3-purple-50 text-slate-900">
2927
{
3028
Object.entries(sidebar).map(([header, children]) => (

www/src/layouts/docs.astro

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const githubEditUrl = `${CONFIG.GITHUB_EDIT_URL}/${currentFile}`;
8080
<nav
8181
id="grid-left"
8282
title="Site Navigation"
83-
class="bg-default t3-scrollbar hidden md:flex flex-col justify-start sticky col-span-1 w-full h-auto max-h-[calc(100vh-80px)] md:max-h-[calc(100vh-96px)] top-20 pt-4 md:pt-0 md:top-24 transition-colors duration-300"
83+
class="bg-default t3-scrollbar hidden md:flex flex-col justify-start sticky col-span-1 w-full h-auto max-h-[calc(100vh-80px)] md:max-h-[calc(100vh-96px)] top-20 pt-4 md:pt-0 md:top-24 transition-colors duration-300 overflow-y-auto"
8484
>
8585
<LeftSidebar currentPage={currentPage} />
8686
</nav>
@@ -97,7 +97,7 @@ const githubEditUrl = `${CONFIG.GITHUB_EDIT_URL}/${currentFile}`;
9797
<aside
9898
id="grid-right"
9999
title="Table of Contents"
100-
class="t3-scrollbar hidden lg:flex lg:flex-col lg:justify-start sticky col-span-1 w-full h-auto max-h-[calc(100vh-100px)] pr-4 top-[100px]"
100+
class="t3-scrollbar hidden lg:flex lg:flex-col lg:justify-start sticky col-span-1 w-full h-auto max-h-[calc(100vh-100px)] pr-4 pb-4 top-[100px] overflow-y-auto"
101101
>
102102
<RightSidebar
103103
headings={headings}

0 commit comments

Comments
 (0)