Skip to content

chore: release v3.1.3 #1061

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/layout/mobile-navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export function MobileNavigation({ isOpen = false, onClose, tree }: MobileNaviga
) : isInDocsContext && !showMainMenu ? (
<TreeContextProvider tree={tree}>
<div className="bg-background">
<div className="[&_aside]:!relative [&_aside]:!top-auto [&_aside]:!w-full [&_aside]:!h-auto [&_aside]:!visible [&_aside]:!p-0">
<div className="[&_aside]:!relative [&_aside]:!top-auto [&_aside]:!w-full [&_aside]:!h-auto [&_aside]:!visible [&_aside]:!px-0 [&_aside]:!pt-0 [&_aside]:!pb-10">
<Sidebar />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/layouts/docs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export function Sidebar() {
<aside
data-collapsed={collapsed}
className={cn(
'fixed flex flex-col shrink-0 pt-4 px-2 pb-20 top-16 z-20 text-base md:text-sm overflow-auto md:sticky md:h-[calc(100dvh-64px)]',
'fixed flex flex-col shrink-0 pt-4 px-2 pb-10 top-16 z-20 text-base md:text-sm overflow-auto md:sticky md:h-[calc(100dvh-64px)]',
'max-md:inset-x-0 max-md:bottom-0',
!open && 'max-md:invisible',
'md:w-[250px] md:transition-all md:duration-100 ease-linear',
Expand Down